SlideShare uma empresa Scribd logo
1 de 39
Baixar para ler offline
Do Cosmos a Terra: Usando Python para
desvendar os mist´erios do Universo.
Dr. Eduardo S. Pereira1
1Instituto Nacional de Pesquisas Espaciais
Divis˜ao de Astrof´ısica
Dispon´ıvel em: http://pt.slideshare.net/duducosmos
09/Novembro/2015
Sum´ario
1 Introduc¸ ˜ao
2 Cosmos, ou A Evoluc¸ ˜ao do Universo.
3 Um pouco mais de Cosmologia e Astrof´ısica
4 PyCosmicStar
5 A Taxa C´osmica de Formac¸ ˜ao Estelar e Os Buracos Negros
Supermassivos
6 Sol e Terra
7 Fim –*.*–
8 Referˆencias Bibliogr´aficas
Introduc¸ ˜ao
O Framework de Trabalho.
Introduc¸ ˜ao
O Framework de Trabalho.
Introduc¸ ˜ao
O Framework de Trabalho.
Rµν −
1
2
Rgµν +Λµν =
8πG
c4
Tµν (1)
Introduc¸ ˜ao
O Framework de Trabalho.
Cosmos, ou A Evoluc¸ ˜ao do Universo.
O Modelo Cosmol´ogico Padr˜ao
Cosmos, ou A Evoluc¸ ˜ao do Universo.
O Modelo Cosmol´ogico Padr˜ao
Cosmos, ou A Evoluc¸ ˜ao do Universo.
Regi˜oes de Formac¸ ˜ao Estelar
Cosmos, ou A Evoluc¸ ˜ao do Universo.
Redshift
Cosmos, ou A Evoluc¸ ˜ao do Universo.
Redshift
Um pouco mais de Cosmologia e Astrof´ısica
O Formalismo Tipo Press-Schechter
Um pouco mais de Cosmologia e Astrof´ısica
O Modelo de Formac¸ ˜ao Estelar
Halos de mat´eria escura s˜ao poc¸os de potencial gravitacional;
Se o halo tiver massa maior que um certo limiar a formac¸ ˜ao
estelar ir´a ocorrer;
Os primeiros halos capazes de formar estrelas seriam formados
em z ∼ 20 com massa da ordem de 106M
[Salvadori, Schneider e Ferrara 2007]
Um pouco mais de Cosmologia e Astrof´ısica
O Modelo de Formac¸ ˜ao Estelar
Halos de mat´eria escura s˜ao poc¸os de potencial gravitacional;
Se o halo tiver massa maior que um certo limiar a formac¸ ˜ao
estelar ir´a ocorrer;
Os primeiros halos capazes de formar estrelas seriam formados
em z ∼ 20 com massa da ordem de 106M
[Salvadori, Schneider e Ferrara 2007]
Um pouco mais de Cosmologia e Astrof´ısica
O Modelo de Formac¸ ˜ao Estelar
Halos de mat´eria escura s˜ao poc¸os de potencial gravitacional;
Se o halo tiver massa maior que um certo limiar a formac¸ ˜ao
estelar ir´a ocorrer;
Os primeiros halos capazes de formar estrelas seriam formados
em z ∼ 20 com massa da ordem de 106M
[Salvadori, Schneider e Ferrara 2007]
PyCosmicStar
O c´odigo
PyCosmicStar
O c´odigo
PyCosmicStar
O c´odigo
from pycosmicstar.lcdmcosmology import lcdmcosmology
import matplotlib.pyplot as plt
# I n s t a n c i n g a LCDM Object .
lcdmUniverser = lcdmcosmology(omegam=0.24,omegab=0.04,
omegal=0.73,h=0.7)
z = arange(0, 10.5, 0.1)
# The age of the Universe as a f u n c t i o n of the r e d s h i f t
plt.plot(z, [lcdmUniverser.age(zi) for zi in z])
plt.xlabel(r"$z$ - Redshift")
plt.ylabel(r"$t$ (yr)")
plt.show()
PyCosmicStar
O c´odigo
PyCosmicStar
O c´odigo
from pycosmicstar.cosmicstarformation import cosmicstarformation
from pycosmicstar.lcdmcosmology import lcdmcosmology
from pycosmicstar.observationalCSFR import ObservationalCSFR
import matplotlib.pyplot as plt
from numpy import arange , array
z = arange(0, 20, 0.1)
#Cosmic Star Formation Rate using
# Tinker e t al . dark haloes mass f u n c t i o n
myCSFR_TK = cosmicstarformation(cosmology=lcdmcosmology ,
massFunctionType="TK",
delta_halo =200)
PyCosmicStar
O c´odigo
#Cosmic Star Formation Rate using
# Press and Schechter dark haloes mass f u n c t i o n
myCSFR_PS = cosmicstarformation(cosmology=lcdmcosmology ,
massFunctionType="PS")
#Cosmic Star Formation Rate using
# Seth e t al . dark haloes mass f u n c t i o n
myCSFR_ST = cosmicstarformation(cosmology=lcdmcosmology)
PyCosmicStar
O c´odigo
csfrTK = array([myCSFR_TK.cosmicStarFormationRate(zi) for zi in z])
csfrPS = array([myCSFR_PS.cosmicStarFormationRate(zi) for zi in z])
csfrST = array([myCSFR_ST.cosmicStarFormationRate(zi) for zi in z])
PyCosmicStar
O c´odigo
obsCSFR = ObservationalCSFR()
x, y = obsCSFR.csfredshift()
xerr , yerr = obsCSFR.errorData()
plt.errorbar(x, y, yerr=yerr , xerr=xerr , fmt=’.’)
plt.plot(z, csfrTK , label="TK")
plt.plot(z, csfrST , label="ST")
plt.plot(z, csfrPS , label="PS")
plt.legend(loc=4)
plt.yscale(’log’)
plt.ylabel(r’$dot{rho}_{*}$( M$_{odot}$Mpc$ˆ{-3}$yr$ˆ{-1}$)’)
plt.xlabel(r’$z$’)
plt.show()
PyCosmicStar
O c´odigo
PyCosmicStar
O c´odigo
http://duducosmos.github.io/pycosmicstar/index.html
PyCosmicStar
Nas nuvens
www.cosmicstarformation.com
A Taxa C´osmica de Formac¸ ˜ao Estelar e Os Buracos Negros Supermassivos
Buracos Negros Supermassivos
A Taxa C´osmica de Formac¸ ˜ao Estelar e Os Buracos Negros Supermassivos
Buracos Negros Supermassivos na Nossa Gal´axia
A Taxa C´osmica de Formac¸ ˜ao Estelar e Os Buracos Negros Supermassivos
O Modelo ´e Concordante com as Observac¸ ˜oes
Sol e Terra
Coerencia Wavelet
http://duducosmos.github.io/PIWavelet/
Sol e Terra
Coerencia Wavelet
import numpy as np
from piwavelet import piwavelet
# Generation of the Random Signal 1
y1 = np.random.rand(100)
# Generation of the Random Signal 2
y2 = np.random.rand(100)
# Time s t e p
x = np.arange(0,100,1)
# Normalization of the Signal 1
y1 = (y1-y1.mean())/y1.std()
# Normalization of the Signal 2
y2 = (y2-y2.mean())/y2.std()
# Wavelet Coherence A n a l y s i s
myCoherence = piwavelet.wcoherence(y1,y2)
Sol e Terra
Coerencia Wavelet
# Plot of the Coherence Map
myCoherence.plot(t = x, title=’Test’,units=’sec’)
# I f you want to know the i n d i v i d u a l p r o p e r t i e s .
Rsq ,period ,scale ,coi ,sig95=myCoherence()
Sol e Terra
Coerencia Wavelet
http://duducosmos.github.io/PIWavelet/
Sol e Terra
Coerencia Wavelet
Sol e Terra
Coerencia Wavelet
Fim –*.*–
Obrigado
Star Formation Dreams- ´Oleo sobre
tela. Em andamento.
http:
//pereirasomozartgallery.
edupereira.webfactional.com/
https://www.facebook.com/
pereirasomozagallery/
Referˆencias Bibliogr´aficas
COPI, C. J. A stochastic approach to chemical evolution. Apj,
v. 487, p. 704, out. 1997.
DAIGNE, F. et al. Hierarchical growth and satr formation:
Enrichment, outflows and supernova rates. Apj, v. 647, p. 773–786,
ago. 2006.
HOPKINS, A. M. On the evolution of star-forming galaxies. APJ,
American Physical Society, v. 615, p. 209–221, nov. 2004.
HOPKINS, P. F.; RICHARDS, G. T.; HERNQUIST, L. An
observational determination of the bolometric quasar luminosity
function. Apj, v. 654, p. 731–753, jan. 2007.
JENKINS, A. et al. The mass function of dark matter haloes. Mon.
Not. R. Astron. Soc., v. 321, p. 372–384, 2001.
Referˆencias Bibliogr´aficas
PEREIRA, E. dos S.; MIRANDA, O. D. The role of the dark matter
haloes on the cosmic star formation rate. New Ast., v. 41, p. 48–52,
2015.
PEREIRA, E. S.; MIRANDA, O. D. Stochastic background of
gravitational waves generated by pre-galactic black holes. MNRAS,
v. 401, p. 1924–1932, jan. 2010.
PEREIRA, E. S.; MIRANDA, O. D. Supermassive black holes:
connecting the growth to the cosmic star formation rate. MNRAS
Letters, v. 418, p. L30–L34., 2011.
PRESS, W. H.; SCHECHTER, P. Formation of galaxies and
clusters of galaxies by self-similar gravitational condesation. Apj, p.
425–438, fev. 1974.
SALPETER, E. E. The luminousity function and stellar evolution.
Apj, v. 121, p. 161–167, 1955.
Referˆencias Bibliogr´aficas
SALVADORI, S.; SCHNEIDER, R.; FERRARA, A. Cosmic stellar
relics in the galactic halo. MNRAS, v. 381, p. 647–662, out. 2007.
SCALO, J. M. The stellar initial mass function. Fundamentals
Cosmic Phys., v. 11, p. 1–278, maio 1986.
SHETH, R. K.; MO, H. J.; TORMEN, G. Ellipsoidal collapse and an
improved model for the number and spatial distribuition of dark
matter haloes. Mon. Not. R. Astron, v. 323, p. 1–12, set. 2001.

Mais conteúdo relacionado

Semelhante a Do Cosmos a Terra: Usando Python para desvendar os mistérios do Universo.

STEREO Science Writer's Guide
STEREO Science Writer's GuideSTEREO Science Writer's Guide
STEREO Science Writer's Guide
Camille Haley
 
InfantsoftheUniverseDeterminingthechemicalCompositionAgeandDistanceofOpenStar...
InfantsoftheUniverseDeterminingthechemicalCompositionAgeandDistanceofOpenStar...InfantsoftheUniverseDeterminingthechemicalCompositionAgeandDistanceofOpenStar...
InfantsoftheUniverseDeterminingthechemicalCompositionAgeandDistanceofOpenStar...
Ivan Lomeli
 
input file-- nasa.sqlDROP table NASA_Assigned; DROP table NAS.pdf
input file-- nasa.sqlDROP table NASA_Assigned; DROP table NAS.pdfinput file-- nasa.sqlDROP table NASA_Assigned; DROP table NAS.pdf
input file-- nasa.sqlDROP table NASA_Assigned; DROP table NAS.pdf
sanjeevbansal1970
 
How to tell an accreting boson star from a black hole h. olivares et al (2020)
How to tell an accreting boson star from a black hole   h. olivares et al (2020)How to tell an accreting boson star from a black hole   h. olivares et al (2020)
How to tell an accreting boson star from a black hole h. olivares et al (2020)
SOCIEDAD JULIO GARAVITO
 
DISSERTATIONJOAKIM676951
DISSERTATIONJOAKIM676951DISSERTATIONJOAKIM676951
DISSERTATIONJOAKIM676951
Joakim Carlsen
 
Tracing evolution of_dust_in_eagle_nebula
Tracing evolution of_dust_in_eagle_nebulaTracing evolution of_dust_in_eagle_nebula
Tracing evolution of_dust_in_eagle_nebula
Sérgio Sacani
 
Submillimeter galaxies as_progenitors_of_compact_quiescent_galaxies
Submillimeter galaxies as_progenitors_of_compact_quiescent_galaxiesSubmillimeter galaxies as_progenitors_of_compact_quiescent_galaxies
Submillimeter galaxies as_progenitors_of_compact_quiescent_galaxies
Sérgio Sacani
 
A higher efficiency_of_converting_gas_to_stars_push_galaxies_at_z_1_6_well_ab...
A higher efficiency_of_converting_gas_to_stars_push_galaxies_at_z_1_6_well_ab...A higher efficiency_of_converting_gas_to_stars_push_galaxies_at_z_1_6_well_ab...
A higher efficiency_of_converting_gas_to_stars_push_galaxies_at_z_1_6_well_ab...
Sérgio Sacani
 
RichardIgnaceCarson
RichardIgnaceCarsonRichardIgnaceCarson
RichardIgnaceCarson
Jason Carson
 
GrantProposalSethKrantzler_Fra
GrantProposalSethKrantzler_FraGrantProposalSethKrantzler_Fra
GrantProposalSethKrantzler_Fra
Seth Krantzler
 
Stellar tidal streams_in_spiral_galaxies_of_the_local_volume
Stellar tidal streams_in_spiral_galaxies_of_the_local_volumeStellar tidal streams_in_spiral_galaxies_of_the_local_volume
Stellar tidal streams_in_spiral_galaxies_of_the_local_volume
Sérgio Sacani
 

Semelhante a Do Cosmos a Terra: Usando Python para desvendar os mistérios do Universo. (20)

Excellenz
ExcellenzExcellenz
Excellenz
 
STEREO Science Writer's Guide
STEREO Science Writer's GuideSTEREO Science Writer's Guide
STEREO Science Writer's Guide
 
InfantsoftheUniverseDeterminingthechemicalCompositionAgeandDistanceofOpenStar...
InfantsoftheUniverseDeterminingthechemicalCompositionAgeandDistanceofOpenStar...InfantsoftheUniverseDeterminingthechemicalCompositionAgeandDistanceofOpenStar...
InfantsoftheUniverseDeterminingthechemicalCompositionAgeandDistanceofOpenStar...
 
The Sparkler: Evolved High-redshift Globular Cluster Candidates Captured by JWST
The Sparkler: Evolved High-redshift Globular Cluster Candidates Captured by JWSTThe Sparkler: Evolved High-redshift Globular Cluster Candidates Captured by JWST
The Sparkler: Evolved High-redshift Globular Cluster Candidates Captured by JWST
 
Large-Scale Inference in Time Domain Astrophysics
Large-Scale Inference in Time Domain AstrophysicsLarge-Scale Inference in Time Domain Astrophysics
Large-Scale Inference in Time Domain Astrophysics
 
input file-- nasa.sqlDROP table NASA_Assigned; DROP table NAS.pdf
input file-- nasa.sqlDROP table NASA_Assigned; DROP table NAS.pdfinput file-- nasa.sqlDROP table NASA_Assigned; DROP table NAS.pdf
input file-- nasa.sqlDROP table NASA_Assigned; DROP table NAS.pdf
 
A1 17 Ism
A1 17 IsmA1 17 Ism
A1 17 Ism
 
How to tell an accreting boson star from a black hole h. olivares et al (2020)
How to tell an accreting boson star from a black hole   h. olivares et al (2020)How to tell an accreting boson star from a black hole   h. olivares et al (2020)
How to tell an accreting boson star from a black hole h. olivares et al (2020)
 
DISSERTATIONJOAKIM676951
DISSERTATIONJOAKIM676951DISSERTATIONJOAKIM676951
DISSERTATIONJOAKIM676951
 
AAS National Conference 2008: Jon Morse
AAS National Conference 2008: Jon MorseAAS National Conference 2008: Jon Morse
AAS National Conference 2008: Jon Morse
 
Tracing evolution of_dust_in_eagle_nebula
Tracing evolution of_dust_in_eagle_nebulaTracing evolution of_dust_in_eagle_nebula
Tracing evolution of_dust_in_eagle_nebula
 
Submillimeter galaxies as_progenitors_of_compact_quiescent_galaxies
Submillimeter galaxies as_progenitors_of_compact_quiescent_galaxiesSubmillimeter galaxies as_progenitors_of_compact_quiescent_galaxies
Submillimeter galaxies as_progenitors_of_compact_quiescent_galaxies
 
ESTEC_Oct_2015
ESTEC_Oct_2015ESTEC_Oct_2015
ESTEC_Oct_2015
 
How big is a black hole
How big is a black holeHow big is a black hole
How big is a black hole
 
A higher efficiency_of_converting_gas_to_stars_push_galaxies_at_z_1_6_well_ab...
A higher efficiency_of_converting_gas_to_stars_push_galaxies_at_z_1_6_well_ab...A higher efficiency_of_converting_gas_to_stars_push_galaxies_at_z_1_6_well_ab...
A higher efficiency_of_converting_gas_to_stars_push_galaxies_at_z_1_6_well_ab...
 
RichardIgnaceCarson
RichardIgnaceCarsonRichardIgnaceCarson
RichardIgnaceCarson
 
C Ms Intro
C Ms IntroC Ms Intro
C Ms Intro
 
Know the star_know_the_planet_discovery_of_l_ate_type_companions_to_two_exopl...
Know the star_know_the_planet_discovery_of_l_ate_type_companions_to_two_exopl...Know the star_know_the_planet_discovery_of_l_ate_type_companions_to_two_exopl...
Know the star_know_the_planet_discovery_of_l_ate_type_companions_to_two_exopl...
 
GrantProposalSethKrantzler_Fra
GrantProposalSethKrantzler_FraGrantProposalSethKrantzler_Fra
GrantProposalSethKrantzler_Fra
 
Stellar tidal streams_in_spiral_galaxies_of_the_local_volume
Stellar tidal streams_in_spiral_galaxies_of_the_local_volumeStellar tidal streams_in_spiral_galaxies_of_the_local_volume
Stellar tidal streams_in_spiral_galaxies_of_the_local_volume
 

Mais de Eduardo S. Pereira

Mais de Eduardo S. Pereira (20)

Lista de Exercícios de Probabilidade e Estatística do Segundo Bimestre
Lista de Exercícios de Probabilidade e Estatística do Segundo BimestreLista de Exercícios de Probabilidade e Estatística do Segundo Bimestre
Lista de Exercícios de Probabilidade e Estatística do Segundo Bimestre
 
Aula 10 Probabilidade e Estatística
Aula 10 Probabilidade e EstatísticaAula 10 Probabilidade e Estatística
Aula 10 Probabilidade e Estatística
 
Aula de Probabilidade e Estatítisca Revisão
Aula de Probabilidade e Estatítisca RevisãoAula de Probabilidade e Estatítisca Revisão
Aula de Probabilidade e Estatítisca Revisão
 
Atividade prática Probabilidade e Estatística
Atividade prática Probabilidade e EstatísticaAtividade prática Probabilidade e Estatística
Atividade prática Probabilidade e Estatística
 
Probabilidade e Estatítica Lista de Exercícios 1
Probabilidade e Estatítica Lista de Exercícios 1Probabilidade e Estatítica Lista de Exercícios 1
Probabilidade e Estatítica Lista de Exercícios 1
 
Probabilidade e Estatística Tabelas de Frequência
Probabilidade e Estatística Tabelas de FrequênciaProbabilidade e Estatística Tabelas de Frequência
Probabilidade e Estatística Tabelas de Frequência
 
Probabilidade e Estatística Boxplot
Probabilidade e Estatística BoxplotProbabilidade e Estatística Boxplot
Probabilidade e Estatística Boxplot
 
Aula 11 Modelagem de Dados
Aula 11 Modelagem de DadosAula 11 Modelagem de Dados
Aula 11 Modelagem de Dados
 
Aula 10 Modelagem de Dados
Aula 10 Modelagem de DadosAula 10 Modelagem de Dados
Aula 10 Modelagem de Dados
 
Aula 9 Modelagem de Dados
Aula 9 Modelagem de DadosAula 9 Modelagem de Dados
Aula 9 Modelagem de Dados
 
Aula 7 Modelagem de Dados
Aula 7 Modelagem de DadosAula 7 Modelagem de Dados
Aula 7 Modelagem de Dados
 
Aula 8 Modelagem de Dados
Aula 8 Modelagem de DadosAula 8 Modelagem de Dados
Aula 8 Modelagem de Dados
 
Primeira Lista de Exercícios de Modelagem de Dados
Primeira Lista de Exercícios de Modelagem de DadosPrimeira Lista de Exercícios de Modelagem de Dados
Primeira Lista de Exercícios de Modelagem de Dados
 
Aula 06 Modelagem de Dados
Aula 06 Modelagem de DadosAula 06 Modelagem de Dados
Aula 06 Modelagem de Dados
 
Aula05
Aula05Aula05
Aula05
 
Aula04
Aula04Aula04
Aula04
 
Aula03
Aula03Aula03
Aula03
 
Aula02
Aula02Aula02
Aula02
 
Aula01
Aula01Aula01
Aula01
 
Aula 7 - Algoritmos e Estrutura de Dados
Aula 7 - Algoritmos e Estrutura de DadosAula 7 - Algoritmos e Estrutura de Dados
Aula 7 - Algoritmos e Estrutura de Dados
 

Último

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Último (20)

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 

Do Cosmos a Terra: Usando Python para desvendar os mistérios do Universo.

  • 1. Do Cosmos a Terra: Usando Python para desvendar os mist´erios do Universo. Dr. Eduardo S. Pereira1 1Instituto Nacional de Pesquisas Espaciais Divis˜ao de Astrof´ısica Dispon´ıvel em: http://pt.slideshare.net/duducosmos 09/Novembro/2015
  • 2. Sum´ario 1 Introduc¸ ˜ao 2 Cosmos, ou A Evoluc¸ ˜ao do Universo. 3 Um pouco mais de Cosmologia e Astrof´ısica 4 PyCosmicStar 5 A Taxa C´osmica de Formac¸ ˜ao Estelar e Os Buracos Negros Supermassivos 6 Sol e Terra 7 Fim –*.*– 8 Referˆencias Bibliogr´aficas
  • 5. Introduc¸ ˜ao O Framework de Trabalho. Rµν − 1 2 Rgµν +Λµν = 8πG c4 Tµν (1)
  • 7. Cosmos, ou A Evoluc¸ ˜ao do Universo. O Modelo Cosmol´ogico Padr˜ao
  • 8. Cosmos, ou A Evoluc¸ ˜ao do Universo. O Modelo Cosmol´ogico Padr˜ao
  • 9. Cosmos, ou A Evoluc¸ ˜ao do Universo. Regi˜oes de Formac¸ ˜ao Estelar
  • 10. Cosmos, ou A Evoluc¸ ˜ao do Universo. Redshift
  • 11. Cosmos, ou A Evoluc¸ ˜ao do Universo. Redshift
  • 12. Um pouco mais de Cosmologia e Astrof´ısica O Formalismo Tipo Press-Schechter
  • 13. Um pouco mais de Cosmologia e Astrof´ısica O Modelo de Formac¸ ˜ao Estelar Halos de mat´eria escura s˜ao poc¸os de potencial gravitacional; Se o halo tiver massa maior que um certo limiar a formac¸ ˜ao estelar ir´a ocorrer; Os primeiros halos capazes de formar estrelas seriam formados em z ∼ 20 com massa da ordem de 106M [Salvadori, Schneider e Ferrara 2007]
  • 14. Um pouco mais de Cosmologia e Astrof´ısica O Modelo de Formac¸ ˜ao Estelar Halos de mat´eria escura s˜ao poc¸os de potencial gravitacional; Se o halo tiver massa maior que um certo limiar a formac¸ ˜ao estelar ir´a ocorrer; Os primeiros halos capazes de formar estrelas seriam formados em z ∼ 20 com massa da ordem de 106M [Salvadori, Schneider e Ferrara 2007]
  • 15. Um pouco mais de Cosmologia e Astrof´ısica O Modelo de Formac¸ ˜ao Estelar Halos de mat´eria escura s˜ao poc¸os de potencial gravitacional; Se o halo tiver massa maior que um certo limiar a formac¸ ˜ao estelar ir´a ocorrer; Os primeiros halos capazes de formar estrelas seriam formados em z ∼ 20 com massa da ordem de 106M [Salvadori, Schneider e Ferrara 2007]
  • 18. PyCosmicStar O c´odigo from pycosmicstar.lcdmcosmology import lcdmcosmology import matplotlib.pyplot as plt # I n s t a n c i n g a LCDM Object . lcdmUniverser = lcdmcosmology(omegam=0.24,omegab=0.04, omegal=0.73,h=0.7) z = arange(0, 10.5, 0.1) # The age of the Universe as a f u n c t i o n of the r e d s h i f t plt.plot(z, [lcdmUniverser.age(zi) for zi in z]) plt.xlabel(r"$z$ - Redshift") plt.ylabel(r"$t$ (yr)") plt.show()
  • 20. PyCosmicStar O c´odigo from pycosmicstar.cosmicstarformation import cosmicstarformation from pycosmicstar.lcdmcosmology import lcdmcosmology from pycosmicstar.observationalCSFR import ObservationalCSFR import matplotlib.pyplot as plt from numpy import arange , array z = arange(0, 20, 0.1) #Cosmic Star Formation Rate using # Tinker e t al . dark haloes mass f u n c t i o n myCSFR_TK = cosmicstarformation(cosmology=lcdmcosmology , massFunctionType="TK", delta_halo =200)
  • 21. PyCosmicStar O c´odigo #Cosmic Star Formation Rate using # Press and Schechter dark haloes mass f u n c t i o n myCSFR_PS = cosmicstarformation(cosmology=lcdmcosmology , massFunctionType="PS") #Cosmic Star Formation Rate using # Seth e t al . dark haloes mass f u n c t i o n myCSFR_ST = cosmicstarformation(cosmology=lcdmcosmology)
  • 22. PyCosmicStar O c´odigo csfrTK = array([myCSFR_TK.cosmicStarFormationRate(zi) for zi in z]) csfrPS = array([myCSFR_PS.cosmicStarFormationRate(zi) for zi in z]) csfrST = array([myCSFR_ST.cosmicStarFormationRate(zi) for zi in z])
  • 23. PyCosmicStar O c´odigo obsCSFR = ObservationalCSFR() x, y = obsCSFR.csfredshift() xerr , yerr = obsCSFR.errorData() plt.errorbar(x, y, yerr=yerr , xerr=xerr , fmt=’.’) plt.plot(z, csfrTK , label="TK") plt.plot(z, csfrST , label="ST") plt.plot(z, csfrPS , label="PS") plt.legend(loc=4) plt.yscale(’log’) plt.ylabel(r’$dot{rho}_{*}$( M$_{odot}$Mpc$ˆ{-3}$yr$ˆ{-1}$)’) plt.xlabel(r’$z$’) plt.show()
  • 27. A Taxa C´osmica de Formac¸ ˜ao Estelar e Os Buracos Negros Supermassivos Buracos Negros Supermassivos
  • 28. A Taxa C´osmica de Formac¸ ˜ao Estelar e Os Buracos Negros Supermassivos Buracos Negros Supermassivos na Nossa Gal´axia
  • 29. A Taxa C´osmica de Formac¸ ˜ao Estelar e Os Buracos Negros Supermassivos O Modelo ´e Concordante com as Observac¸ ˜oes
  • 30. Sol e Terra Coerencia Wavelet http://duducosmos.github.io/PIWavelet/
  • 31. Sol e Terra Coerencia Wavelet import numpy as np from piwavelet import piwavelet # Generation of the Random Signal 1 y1 = np.random.rand(100) # Generation of the Random Signal 2 y2 = np.random.rand(100) # Time s t e p x = np.arange(0,100,1) # Normalization of the Signal 1 y1 = (y1-y1.mean())/y1.std() # Normalization of the Signal 2 y2 = (y2-y2.mean())/y2.std() # Wavelet Coherence A n a l y s i s myCoherence = piwavelet.wcoherence(y1,y2)
  • 32. Sol e Terra Coerencia Wavelet # Plot of the Coherence Map myCoherence.plot(t = x, title=’Test’,units=’sec’) # I f you want to know the i n d i v i d u a l p r o p e r t i e s . Rsq ,period ,scale ,coi ,sig95=myCoherence()
  • 33. Sol e Terra Coerencia Wavelet http://duducosmos.github.io/PIWavelet/
  • 36. Fim –*.*– Obrigado Star Formation Dreams- ´Oleo sobre tela. Em andamento. http: //pereirasomozartgallery. edupereira.webfactional.com/ https://www.facebook.com/ pereirasomozagallery/
  • 37. Referˆencias Bibliogr´aficas COPI, C. J. A stochastic approach to chemical evolution. Apj, v. 487, p. 704, out. 1997. DAIGNE, F. et al. Hierarchical growth and satr formation: Enrichment, outflows and supernova rates. Apj, v. 647, p. 773–786, ago. 2006. HOPKINS, A. M. On the evolution of star-forming galaxies. APJ, American Physical Society, v. 615, p. 209–221, nov. 2004. HOPKINS, P. F.; RICHARDS, G. T.; HERNQUIST, L. An observational determination of the bolometric quasar luminosity function. Apj, v. 654, p. 731–753, jan. 2007. JENKINS, A. et al. The mass function of dark matter haloes. Mon. Not. R. Astron. Soc., v. 321, p. 372–384, 2001.
  • 38. Referˆencias Bibliogr´aficas PEREIRA, E. dos S.; MIRANDA, O. D. The role of the dark matter haloes on the cosmic star formation rate. New Ast., v. 41, p. 48–52, 2015. PEREIRA, E. S.; MIRANDA, O. D. Stochastic background of gravitational waves generated by pre-galactic black holes. MNRAS, v. 401, p. 1924–1932, jan. 2010. PEREIRA, E. S.; MIRANDA, O. D. Supermassive black holes: connecting the growth to the cosmic star formation rate. MNRAS Letters, v. 418, p. L30–L34., 2011. PRESS, W. H.; SCHECHTER, P. Formation of galaxies and clusters of galaxies by self-similar gravitational condesation. Apj, p. 425–438, fev. 1974. SALPETER, E. E. The luminousity function and stellar evolution. Apj, v. 121, p. 161–167, 1955.
  • 39. Referˆencias Bibliogr´aficas SALVADORI, S.; SCHNEIDER, R.; FERRARA, A. Cosmic stellar relics in the galactic halo. MNRAS, v. 381, p. 647–662, out. 2007. SCALO, J. M. The stellar initial mass function. Fundamentals Cosmic Phys., v. 11, p. 1–278, maio 1986. SHETH, R. K.; MO, H. J.; TORMEN, G. Ellipsoidal collapse and an improved model for the number and spatial distribuition of dark matter haloes. Mon. Not. R. Astron, v. 323, p. 1–12, set. 2001.