SlideShare a Scribd company logo
1 of 16
Download to read offline
Symbolic computation methods
     in cosmology and
      general relativity
   Part II - Maple+GrTensorII programs for cosmology



      Dumitru N. Vulcanov
    West University of Timişoara
     Theoretical and Applied Physics Dept.-“Mircea Zăgănescu”




                                                                1
Introduction
Why we need new CA packages for cosmology ?

New facts from astrophysical measurements show that the Universe is in
an accelerated expansion - quot;cosmic accelerationquot; !

The standard model of the Universe must be reformulated !

One of the solutions is to introduce one or more scalar fields minimally
coupled with the gravity to trigger this expansion.

New models are proposed daily, demanding new specific computational
tools, computer algebra packages included.

This is the purpose of our Cosmo library :
to provide CA tools for theoretical cosmology, in an environment having
all the cosmological parameters and functions defined !
Is entirely done using Maple + GrTensorII !

We will describe Cosmo library in the next slides !!!
                                                                           2
Cosmology

The Cosmo library is processing Einstein equations :




 for the Friedmann-Robertson-Walker metric




  where k=1,-1,0 and R(t) is the scale factor of the Universe




                                                                3
Cosmology

The matter content of the Universe is described by the stress-energy tensor :




 as a scalar field coupled minimally with the gravity and other matter fields
 separately. Thus we have :



  where, as for a perfect fluid :




                                                                                4
Cosmology
For other matter content than the scalar field, the Cosmo library is providing
again the stress-energy tensor as a perfect fluid one :




 with corresponding pressure and density variables.

The main cosmological parameters and functions, namely the Hubble
quot;constantquot; and the deceleration function are :




                                                                                 5
The Cosmo library
 A sequence of GrTensorII and Maple commands for all this follows :

> restart;grtw();qload(rob_sons);
> grdef(`Scal := Phi(t)`);
> grdef(`T1{ i j } := Scal{ ,i } * Scal{ ,j } -
                       g{ i j } * (g{ ^a ^b }*Scal{ ,a }*Scal{ ,b }+ V(t) ) / 2 `);
> pphi(t):=diff(Phi(t),t)^2/2/c^2-V(t)/2;
  epsilonphi(t):=diff(Phi(t),t)^2/2/c^2+V(t)/2;
  grdef(`u{ i } := -c*kdelta{ i $t}`);
  > grdef(`T2{ i j } := (epsilon(t) + p(t))*u{ i }*u{ j } + p(t) * g { i j } `);
> grdef(`T{ i j } :=T1{ i j } + T2{ i j }`);
> grdef(`cons{ i }:= T{ i ^j ;j }`); grcalc(cons(dn));
> EcuKG:=grcomponent(Box[Scal],[]) -DV(t)/2;
> grdef(`Ein{ i j } := G{ i j } - 8*Pi*G*T{ i j }/ c^4`);
> grcalc(Ein(dn,dn)); gralter(Ein(dn,dn),expand);

Where pphi(t) , epsilonphi(t) , p(t) and epsilon(t) are the pressure and
density of the scalar field and matter field, respectively. With cons()
we denoted the conservation law components for the total stress-energy
tensor. The Klein-Gordon equation is EcuKG and DV(t) is the derivative
of the potential in terms of the scalar field !!!                                     6
The Cosmo library
Then follows a sequence of boring grcomponent and gralter commands to
extract the main cosmological equations. Finally we substitute the cosmological
functions in the resulting MAPLE expressions:

> Ecunr1:=expand(simplify(subs(k=K(t)*RR(t)^2,Ecunr1)));
> Ecunr2:=expand(simplify(subs(k=K(t)*RR(t)^2,Ecunr2)));
> Ecunr1:=subs(diff(RR(t),t)=H(t)*RR(t),Ecunr1);
> Ecunr22:=subs(diff(RR(t),t,t)=-2*H(t)^2*RR(t)*Q(t),Ecunr2);
> Ecunr22:=subs(diff(RR(t),t)=H(t)*RR(t),Ecunr22);
> Ecunr2:=subs(diff(RR(t),t)=H(t)*RR(t),Ecunr2);
> Ecunr2:=expand(Ecunr2);
> Ecunr2:=subs(diff(RR(t),t)=H(t)*RR(t),Ecunr2);
> Ecunr3:=subs(diff(RR(t),t)=H(t)*RR(t),Ecunr3);
> EcuKG:=subs(diff(RR(t),t)=H(t)*RR(t),EcuKG);

    Actually all these commands are transferred in Maple expressions/objects
    the main comological functions, defined and calculated in GrTensorII.
    As a result the user will not use anymore GrTensorII !!!


                                                                               7
The Cosmo library
Thus the program is providing the Klein-Gordon and the conservation law
for the scalar field, namely :




  and the Friedmann equations :




                                                                          8
The Cosmo library
All this stuff is then saved in a library called cosmo.m and can be loaded for
fast processing. As a result all the facilities of MAPLE + GrTensorII are available
together with the cosmology environment described above.

The library is kept in the main directory of GrTensorII (Grtii(6) for Windows
versions or grii in Unix implementations. Then it can be loaded in a Maple
 worksheet using read or load commands


Note : intermediate components of the Ein(i,j) tensor are kept also (apart from
Ecunr1...Ecun3 and EcuKG objects) for later use and processing.
This makes easy the development of the library for more applications


  A simple example of how to use and developp the Cosmo library follows !


       But first let’s have a short demonstration …



                                                                                9
A simple example


We shall ilustrate the use and development of
the Cosmo library in a specificmodel using the
quot;reverse - engineeringquot; method for designing
potentials of the scalar field.




In the standard cosmology the Friedmann eqs. are solved for a specific potential
of the scalar field, initially prescribed from certain physical arguments, and then
the time function R(t) is obtained and compared with the astrophysical
measurements.

In the quot;reverse-engineeringquot; method, the function R(t) is initially prescribed, as
much as possible close to the measurements, and then the potential V(t) is
obtained from Friedmann eqs, if it is possible !

                                                                              10
A simple example

 First step : simply solve two of the above Friedmanneqs. to get :




Here we have the scalar field as the only matter content of the Universe and
geometrical units : c=G=1
For a DeSitter exponential expansion, namely



we have, after a sequence of subs and simplify commands :




 Note : we used an intermediate Maple function for D2Phi(t) !

                                                                               11
A simple example

   Then, from the last expression we have :




The result : equations Ecunr1...Ecunr3 are automatically satisfied and the
Klein-Gordone equation becomes :




This one is used to check the calculations, solving it for the object DV(t).
Therefore DV(t) must fit with the one obtained directly from the scalar field
expression above, after eliminating the time...


                                                                                12
A simple example

Final step : expressing the potential and DV(t) in terms of the scalar field, again
after a boring sequence of subs and simplify commands :




 We need the last expression for DV for our numerical investigations we done,
 As initial data for numerical eolving the Einsten equations for the scalar field.
 But this is for the moment out of the goals of this lecture.

This was a simple example, just to ilustrate how the things are working with
Cosmo library and the reverse engineering method.

Other exmples, more complicated, were processed, even with two scalar fields
included to simulate different components of the dark-matter and energy !

                                                                                  13
Here are some of examples we processed …




    Ellis –Madsen potentials. Here we denoted with R0 the scale factor
    at the actual time t0 and with α the quantity φ(t) – φ0

                                                                         14
Some references




                  15
End of part II




But before the break let’s have aagain a
            demonstration !!!
                                           16

More Related Content

What's hot

PDE Constrained Optimization and the Lambert W-Function
PDE Constrained Optimization and the Lambert W-FunctionPDE Constrained Optimization and the Lambert W-Function
PDE Constrained Optimization and the Lambert W-Function
Michael Maroun
 
185817220 7e chapter5sm-final-newfrank-white-fluid-mechanics-7th-ed-ch-5-solu...
185817220 7e chapter5sm-final-newfrank-white-fluid-mechanics-7th-ed-ch-5-solu...185817220 7e chapter5sm-final-newfrank-white-fluid-mechanics-7th-ed-ch-5-solu...
185817220 7e chapter5sm-final-newfrank-white-fluid-mechanics-7th-ed-ch-5-solu...
Abrar Hussain
 
A study of the worst case ratio of a simple algorithm for simple assembly lin...
A study of the worst case ratio of a simple algorithm for simple assembly lin...A study of the worst case ratio of a simple algorithm for simple assembly lin...
A study of the worst case ratio of a simple algorithm for simple assembly lin...
narmo
 
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
Kellen Betts
 
videoMotionTrackingPCA
videoMotionTrackingPCAvideoMotionTrackingPCA
videoMotionTrackingPCA
Kellen Betts
 

What's hot (18)

BNL_Research_Poster
BNL_Research_PosterBNL_Research_Poster
BNL_Research_Poster
 
Localized Electrons with Wien2k
Localized Electrons with Wien2kLocalized Electrons with Wien2k
Localized Electrons with Wien2k
 
Ecl astana 28_september_2017_shrt
Ecl astana 28_september_2017_shrtEcl astana 28_september_2017_shrt
Ecl astana 28_september_2017_shrt
 
How to design a linear control system
How to design a linear control systemHow to design a linear control system
How to design a linear control system
 
Germany2003 gamg
Germany2003 gamgGermany2003 gamg
Germany2003 gamg
 
Phonons & Phonopy: Pro Tips (2014)
Phonons & Phonopy: Pro Tips (2014)Phonons & Phonopy: Pro Tips (2014)
Phonons & Phonopy: Pro Tips (2014)
 
PDE Constrained Optimization and the Lambert W-Function
PDE Constrained Optimization and the Lambert W-FunctionPDE Constrained Optimization and the Lambert W-Function
PDE Constrained Optimization and the Lambert W-Function
 
Merged Talk: A Verified Optimizer for Quantum Circuits & Verified Translation...
Merged Talk: A Verified Optimizer for Quantum Circuits & Verified Translation...Merged Talk: A Verified Optimizer for Quantum Circuits & Verified Translation...
Merged Talk: A Verified Optimizer for Quantum Circuits & Verified Translation...
 
Bin packing
Bin packingBin packing
Bin packing
 
185817220 7e chapter5sm-final-newfrank-white-fluid-mechanics-7th-ed-ch-5-solu...
185817220 7e chapter5sm-final-newfrank-white-fluid-mechanics-7th-ed-ch-5-solu...185817220 7e chapter5sm-final-newfrank-white-fluid-mechanics-7th-ed-ch-5-solu...
185817220 7e chapter5sm-final-newfrank-white-fluid-mechanics-7th-ed-ch-5-solu...
 
A study of the worst case ratio of a simple algorithm for simple assembly lin...
A study of the worst case ratio of a simple algorithm for simple assembly lin...A study of the worst case ratio of a simple algorithm for simple assembly lin...
A study of the worst case ratio of a simple algorithm for simple assembly lin...
 
NUMERICAL METHODS IN STEADY STATE, 1D and 2D HEAT CONDUCTION- Part-II
NUMERICAL METHODS IN STEADY STATE, 1D and 2D HEAT CONDUCTION- Part-IINUMERICAL METHODS IN STEADY STATE, 1D and 2D HEAT CONDUCTION- Part-II
NUMERICAL METHODS IN STEADY STATE, 1D and 2D HEAT CONDUCTION- Part-II
 
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
 
discrete-hmm
discrete-hmmdiscrete-hmm
discrete-hmm
 
videoMotionTrackingPCA
videoMotionTrackingPCAvideoMotionTrackingPCA
videoMotionTrackingPCA
 
A0730103
A0730103A0730103
A0730103
 
H213949
H213949H213949
H213949
 
Pairing scott
Pairing scottPairing scott
Pairing scott
 

Similar to D. Vulcanov: Symbolic Computation Methods in Cosmology and General Relativity [2]

D. Vulcanov, REM — the Shape of Potentials for f(R) Theories in Cosmology and...
D. Vulcanov, REM — the Shape of Potentials for f(R) Theories in Cosmology and...D. Vulcanov, REM — the Shape of Potentials for f(R) Theories in Cosmology and...
D. Vulcanov, REM — the Shape of Potentials for f(R) Theories in Cosmology and...
SEENET-MTP
 
Introduction to cosmology and numerical cosmology (with the Cactus code) (1/2)
Introduction to cosmology and numerical cosmology (with the Cactus code) (1/2)Introduction to cosmology and numerical cosmology (with the Cactus code) (1/2)
Introduction to cosmology and numerical cosmology (with the Cactus code) (1/2)
SEENET-MTP
 
N. Bilić: AdS Braneworld with Back-reaction
N. Bilić: AdS Braneworld with Back-reactionN. Bilić: AdS Braneworld with Back-reaction
N. Bilić: AdS Braneworld with Back-reaction
SEENET-MTP
 
Dirac's Positron
Dirac's PositronDirac's Positron
Dirac's Positron
Arpan Saha
 

Similar to D. Vulcanov: Symbolic Computation Methods in Cosmology and General Relativity [2] (20)

D. Vulcanov, REM — the Shape of Potentials for f(R) Theories in Cosmology and...
D. Vulcanov, REM — the Shape of Potentials for f(R) Theories in Cosmology and...D. Vulcanov, REM — the Shape of Potentials for f(R) Theories in Cosmology and...
D. Vulcanov, REM — the Shape of Potentials for f(R) Theories in Cosmology and...
 
Introduction to cosmology and numerical cosmology (with the Cactus code) (1/2)
Introduction to cosmology and numerical cosmology (with the Cactus code) (1/2)Introduction to cosmology and numerical cosmology (with the Cactus code) (1/2)
Introduction to cosmology and numerical cosmology (with the Cactus code) (1/2)
 
PART II.1 - Modern Physics
PART II.1 - Modern PhysicsPART II.1 - Modern Physics
PART II.1 - Modern Physics
 
first research paper
first research paperfirst research paper
first research paper
 
Article 1st
Article 1stArticle 1st
Article 1st
 
D. Vulcanov - On Cosmologies with non-Minimally Coupled Scalar Field and the ...
D. Vulcanov - On Cosmologies with non-Minimally Coupled Scalar Field and the ...D. Vulcanov - On Cosmologies with non-Minimally Coupled Scalar Field and the ...
D. Vulcanov - On Cosmologies with non-Minimally Coupled Scalar Field and the ...
 
DOI: 10.1007/s10773-009-0027-9
DOI: 10.1007/s10773-009-0027-9DOI: 10.1007/s10773-009-0027-9
DOI: 10.1007/s10773-009-0027-9
 
Numerical Analysis Assignment Help
Numerical Analysis Assignment HelpNumerical Analysis Assignment Help
Numerical Analysis Assignment Help
 
N. Bilić: AdS Braneworld with Back-reaction
N. Bilić: AdS Braneworld with Back-reactionN. Bilić: AdS Braneworld with Back-reaction
N. Bilić: AdS Braneworld with Back-reaction
 
68th ICREA Colloquium "Results from the LHC Run II" by Mario Martínez
68th ICREA Colloquium "Results from the LHC Run II" by Mario Martínez68th ICREA Colloquium "Results from the LHC Run II" by Mario Martínez
68th ICREA Colloquium "Results from the LHC Run II" by Mario Martínez
 
Chem140alecture3.ppt
Chem140alecture3.pptChem140alecture3.ppt
Chem140alecture3.ppt
 
Problem and solution i ph o 11
Problem and solution i ph o 11Problem and solution i ph o 11
Problem and solution i ph o 11
 
Universe from nothing
Universe from nothingUniverse from nothing
Universe from nothing
 
"Warm tachyon matter" - N. Bilic
"Warm tachyon matter" - N. Bilic"Warm tachyon matter" - N. Bilic
"Warm tachyon matter" - N. Bilic
 
statistical physics assignment help
statistical physics assignment helpstatistical physics assignment help
statistical physics assignment help
 
Fundamental principle of information to-energy conversion.
Fundamental principle of information to-energy conversion.Fundamental principle of information to-energy conversion.
Fundamental principle of information to-energy conversion.
 
Dirac's Positron
Dirac's PositronDirac's Positron
Dirac's Positron
 
Dr. Arpan Bhattacharyya (Indian Institute Of Science, Bangalore)
Dr. Arpan Bhattacharyya (Indian Institute Of Science, Bangalore)Dr. Arpan Bhattacharyya (Indian Institute Of Science, Bangalore)
Dr. Arpan Bhattacharyya (Indian Institute Of Science, Bangalore)
 
Physical Chemistry Homework Help
Physical Chemistry Homework HelpPhysical Chemistry Homework Help
Physical Chemistry Homework Help
 
Causality in special relativity
Causality in special relativityCausality in special relativity
Causality in special relativity
 

More from SEENET-MTP

SEENET-MTP Booklet - 15 years
SEENET-MTP Booklet - 15 yearsSEENET-MTP Booklet - 15 years
SEENET-MTP Booklet - 15 years
SEENET-MTP
 

More from SEENET-MTP (20)

SEENET-MTP Booklet - 15 years
SEENET-MTP Booklet - 15 yearsSEENET-MTP Booklet - 15 years
SEENET-MTP Booklet - 15 years
 
Milan Milošević "The shape of Fe Kα line emitted from relativistic accretion ...
Milan Milošević "The shape of Fe Kα line emitted from relativistic accretion ...Milan Milošević "The shape of Fe Kα line emitted from relativistic accretion ...
Milan Milošević "The shape of Fe Kα line emitted from relativistic accretion ...
 
Ivan Dimitrijević "Nonlocal cosmology"
Ivan Dimitrijević "Nonlocal cosmology"Ivan Dimitrijević "Nonlocal cosmology"
Ivan Dimitrijević "Nonlocal cosmology"
 
Dragoljub Dimitrijević "Tachyon Inflation in the RSII Framework"
Dragoljub Dimitrijević "Tachyon Inflation in the RSII Framework"Dragoljub Dimitrijević "Tachyon Inflation in the RSII Framework"
Dragoljub Dimitrijević "Tachyon Inflation in the RSII Framework"
 
Vesna Borka Jovanović "Constraining Scalar-Tensor gravity models by S2 star o...
Vesna Borka Jovanović "Constraining Scalar-Tensor gravity models by S2 star o...Vesna Borka Jovanović "Constraining Scalar-Tensor gravity models by S2 star o...
Vesna Borka Jovanović "Constraining Scalar-Tensor gravity models by S2 star o...
 
Elena Mirela Babalic "Generalized alpha-attractor models for hyperbolic surfa...
Elena Mirela Babalic "Generalized alpha-attractor models for hyperbolic surfa...Elena Mirela Babalic "Generalized alpha-attractor models for hyperbolic surfa...
Elena Mirela Babalic "Generalized alpha-attractor models for hyperbolic surfa...
 
Dragan Huterer "Novi pogledi na svemir"
Dragan Huterer "Novi pogledi na svemir"Dragan Huterer "Novi pogledi na svemir"
Dragan Huterer "Novi pogledi na svemir"
 
Mihai Visinescu "Action-angle variables for geodesic motion on resolved metri...
Mihai Visinescu "Action-angle variables for geodesic motion on resolved metri...Mihai Visinescu "Action-angle variables for geodesic motion on resolved metri...
Mihai Visinescu "Action-angle variables for geodesic motion on resolved metri...
 
Sabin Stoica "Double beta decay and neutrino properties"
Sabin Stoica "Double beta decay and neutrino properties"Sabin Stoica "Double beta decay and neutrino properties"
Sabin Stoica "Double beta decay and neutrino properties"
 
Yurri Sitenko "Boundary effects for magnetized quantum matter in particle and...
Yurri Sitenko "Boundary effects for magnetized quantum matter in particle and...Yurri Sitenko "Boundary effects for magnetized quantum matter in particle and...
Yurri Sitenko "Boundary effects for magnetized quantum matter in particle and...
 
Predrag Milenović "Physics potential of HE/HL-LHC and future circular"
Predrag Milenović "Physics potential of HE/HL-LHC and future circular"Predrag Milenović "Physics potential of HE/HL-LHC and future circular"
Predrag Milenović "Physics potential of HE/HL-LHC and future circular"
 
Marija Dimitrijević Ćirić "Matter Fields in SO(2,3)⋆ Model of Noncommutative ...
Marija Dimitrijević Ćirić "Matter Fields in SO(2,3)⋆ Model of Noncommutative ...Marija Dimitrijević Ćirić "Matter Fields in SO(2,3)⋆ Model of Noncommutative ...
Marija Dimitrijević Ćirić "Matter Fields in SO(2,3)⋆ Model of Noncommutative ...
 
Zvonimir Vlah "Lagrangian perturbation theory for large scale structure forma...
Zvonimir Vlah "Lagrangian perturbation theory for large scale structure forma...Zvonimir Vlah "Lagrangian perturbation theory for large scale structure forma...
Zvonimir Vlah "Lagrangian perturbation theory for large scale structure forma...
 
Vitaly Vanchurin "General relativity from non-equilibrium thermodynamics of q...
Vitaly Vanchurin "General relativity from non-equilibrium thermodynamics of q...Vitaly Vanchurin "General relativity from non-equilibrium thermodynamics of q...
Vitaly Vanchurin "General relativity from non-equilibrium thermodynamics of q...
 
Sergey Sibiryakov "Galactic rotation curves vs. ultra-light dark matter: Impl...
Sergey Sibiryakov "Galactic rotation curves vs. ultra-light dark matter: Impl...Sergey Sibiryakov "Galactic rotation curves vs. ultra-light dark matter: Impl...
Sergey Sibiryakov "Galactic rotation curves vs. ultra-light dark matter: Impl...
 
Radoslav Rashkov "Integrable structures in low-dimensional holography and cos...
Radoslav Rashkov "Integrable structures in low-dimensional holography and cos...Radoslav Rashkov "Integrable structures in low-dimensional holography and cos...
Radoslav Rashkov "Integrable structures in low-dimensional holography and cos...
 
Nikola Godinović "The very high energy gamma ray astronomy"
Nikola Godinović "The very high energy gamma ray astronomy"Nikola Godinović "The very high energy gamma ray astronomy"
Nikola Godinović "The very high energy gamma ray astronomy"
 
Miroljub Dugić "The concept of Local Time. Quantum-mechanical and cosmologica...
Miroljub Dugić "The concept of Local Time. Quantum-mechanical and cosmologica...Miroljub Dugić "The concept of Local Time. Quantum-mechanical and cosmologica...
Miroljub Dugić "The concept of Local Time. Quantum-mechanical and cosmologica...
 
Cemsinan Deliduman "Astrophysics with Weyl Gravity"
Cemsinan Deliduman "Astrophysics with Weyl Gravity"Cemsinan Deliduman "Astrophysics with Weyl Gravity"
Cemsinan Deliduman "Astrophysics with Weyl Gravity"
 
Radu Constantinescu "Scientific research: Excellence in International context"
Radu Constantinescu "Scientific research: Excellence in International context"Radu Constantinescu "Scientific research: Excellence in International context"
Radu Constantinescu "Scientific research: Excellence in International context"
 

Recently uploaded

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 

Recently uploaded (20)

Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 

D. Vulcanov: Symbolic Computation Methods in Cosmology and General Relativity [2]

  • 1. Symbolic computation methods in cosmology and general relativity Part II - Maple+GrTensorII programs for cosmology Dumitru N. Vulcanov West University of Timişoara Theoretical and Applied Physics Dept.-“Mircea Zăgănescu” 1
  • 2. Introduction Why we need new CA packages for cosmology ? New facts from astrophysical measurements show that the Universe is in an accelerated expansion - quot;cosmic accelerationquot; ! The standard model of the Universe must be reformulated ! One of the solutions is to introduce one or more scalar fields minimally coupled with the gravity to trigger this expansion. New models are proposed daily, demanding new specific computational tools, computer algebra packages included. This is the purpose of our Cosmo library : to provide CA tools for theoretical cosmology, in an environment having all the cosmological parameters and functions defined ! Is entirely done using Maple + GrTensorII ! We will describe Cosmo library in the next slides !!! 2
  • 3. Cosmology The Cosmo library is processing Einstein equations : for the Friedmann-Robertson-Walker metric where k=1,-1,0 and R(t) is the scale factor of the Universe 3
  • 4. Cosmology The matter content of the Universe is described by the stress-energy tensor : as a scalar field coupled minimally with the gravity and other matter fields separately. Thus we have : where, as for a perfect fluid : 4
  • 5. Cosmology For other matter content than the scalar field, the Cosmo library is providing again the stress-energy tensor as a perfect fluid one : with corresponding pressure and density variables. The main cosmological parameters and functions, namely the Hubble quot;constantquot; and the deceleration function are : 5
  • 6. The Cosmo library A sequence of GrTensorII and Maple commands for all this follows : > restart;grtw();qload(rob_sons); > grdef(`Scal := Phi(t)`); > grdef(`T1{ i j } := Scal{ ,i } * Scal{ ,j } - g{ i j } * (g{ ^a ^b }*Scal{ ,a }*Scal{ ,b }+ V(t) ) / 2 `); > pphi(t):=diff(Phi(t),t)^2/2/c^2-V(t)/2; epsilonphi(t):=diff(Phi(t),t)^2/2/c^2+V(t)/2; grdef(`u{ i } := -c*kdelta{ i $t}`); > grdef(`T2{ i j } := (epsilon(t) + p(t))*u{ i }*u{ j } + p(t) * g { i j } `); > grdef(`T{ i j } :=T1{ i j } + T2{ i j }`); > grdef(`cons{ i }:= T{ i ^j ;j }`); grcalc(cons(dn)); > EcuKG:=grcomponent(Box[Scal],[]) -DV(t)/2; > grdef(`Ein{ i j } := G{ i j } - 8*Pi*G*T{ i j }/ c^4`); > grcalc(Ein(dn,dn)); gralter(Ein(dn,dn),expand); Where pphi(t) , epsilonphi(t) , p(t) and epsilon(t) are the pressure and density of the scalar field and matter field, respectively. With cons() we denoted the conservation law components for the total stress-energy tensor. The Klein-Gordon equation is EcuKG and DV(t) is the derivative of the potential in terms of the scalar field !!! 6
  • 7. The Cosmo library Then follows a sequence of boring grcomponent and gralter commands to extract the main cosmological equations. Finally we substitute the cosmological functions in the resulting MAPLE expressions: > Ecunr1:=expand(simplify(subs(k=K(t)*RR(t)^2,Ecunr1))); > Ecunr2:=expand(simplify(subs(k=K(t)*RR(t)^2,Ecunr2))); > Ecunr1:=subs(diff(RR(t),t)=H(t)*RR(t),Ecunr1); > Ecunr22:=subs(diff(RR(t),t,t)=-2*H(t)^2*RR(t)*Q(t),Ecunr2); > Ecunr22:=subs(diff(RR(t),t)=H(t)*RR(t),Ecunr22); > Ecunr2:=subs(diff(RR(t),t)=H(t)*RR(t),Ecunr2); > Ecunr2:=expand(Ecunr2); > Ecunr2:=subs(diff(RR(t),t)=H(t)*RR(t),Ecunr2); > Ecunr3:=subs(diff(RR(t),t)=H(t)*RR(t),Ecunr3); > EcuKG:=subs(diff(RR(t),t)=H(t)*RR(t),EcuKG); Actually all these commands are transferred in Maple expressions/objects the main comological functions, defined and calculated in GrTensorII. As a result the user will not use anymore GrTensorII !!! 7
  • 8. The Cosmo library Thus the program is providing the Klein-Gordon and the conservation law for the scalar field, namely : and the Friedmann equations : 8
  • 9. The Cosmo library All this stuff is then saved in a library called cosmo.m and can be loaded for fast processing. As a result all the facilities of MAPLE + GrTensorII are available together with the cosmology environment described above. The library is kept in the main directory of GrTensorII (Grtii(6) for Windows versions or grii in Unix implementations. Then it can be loaded in a Maple worksheet using read or load commands Note : intermediate components of the Ein(i,j) tensor are kept also (apart from Ecunr1...Ecun3 and EcuKG objects) for later use and processing. This makes easy the development of the library for more applications A simple example of how to use and developp the Cosmo library follows ! But first let’s have a short demonstration … 9
  • 10. A simple example We shall ilustrate the use and development of the Cosmo library in a specificmodel using the quot;reverse - engineeringquot; method for designing potentials of the scalar field. In the standard cosmology the Friedmann eqs. are solved for a specific potential of the scalar field, initially prescribed from certain physical arguments, and then the time function R(t) is obtained and compared with the astrophysical measurements. In the quot;reverse-engineeringquot; method, the function R(t) is initially prescribed, as much as possible close to the measurements, and then the potential V(t) is obtained from Friedmann eqs, if it is possible ! 10
  • 11. A simple example First step : simply solve two of the above Friedmanneqs. to get : Here we have the scalar field as the only matter content of the Universe and geometrical units : c=G=1 For a DeSitter exponential expansion, namely we have, after a sequence of subs and simplify commands : Note : we used an intermediate Maple function for D2Phi(t) ! 11
  • 12. A simple example Then, from the last expression we have : The result : equations Ecunr1...Ecunr3 are automatically satisfied and the Klein-Gordone equation becomes : This one is used to check the calculations, solving it for the object DV(t). Therefore DV(t) must fit with the one obtained directly from the scalar field expression above, after eliminating the time... 12
  • 13. A simple example Final step : expressing the potential and DV(t) in terms of the scalar field, again after a boring sequence of subs and simplify commands : We need the last expression for DV for our numerical investigations we done, As initial data for numerical eolving the Einsten equations for the scalar field. But this is for the moment out of the goals of this lecture. This was a simple example, just to ilustrate how the things are working with Cosmo library and the reverse engineering method. Other exmples, more complicated, were processed, even with two scalar fields included to simulate different components of the dark-matter and energy ! 13
  • 14. Here are some of examples we processed … Ellis –Madsen potentials. Here we denoted with R0 the scale factor at the actual time t0 and with α the quantity φ(t) – φ0 14
  • 16. End of part II But before the break let’s have aagain a demonstration !!! 16