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

Ecl astana 28_september_2017_shrt
Ecl astana 28_september_2017_shrtEcl astana 28_september_2017_shrt
Ecl astana 28_september_2017_shrtZhaksylyk Kazykenov
 
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 systemAlireza Mirzaei
 
Phonons & Phonopy: Pro Tips (2014)
Phonons & Phonopy: Pro Tips (2014)Phonons & Phonopy: Pro Tips (2014)
Phonons & Phonopy: Pro Tips (2014)Jonathan Skelton
 
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-FunctionMichael Maroun
 
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...Robert Rand
 
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
 
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-IItmuliya
 
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
videoMotionTrackingPCAKellen 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
 
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 ...SEENET-MTP
 
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-91neviv0
 
Numerical Analysis Assignment Help
Numerical Analysis Assignment HelpNumerical Analysis Assignment Help
Numerical Analysis Assignment HelpMath Homework Solver
 
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-reactionSEENET-MTP
 
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ínezICREA
 
Chem140alecture3.ppt
Chem140alecture3.pptChem140alecture3.ppt
Chem140alecture3.pptSc Pattar
 
"Warm tachyon matter" - N. Bilic
"Warm tachyon matter" - N. Bilic"Warm tachyon matter" - N. Bilic
"Warm tachyon matter" - N. BilicSEENET-MTP
 
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.Fausto Intilla
 
Dirac's Positron
Dirac's PositronDirac's Positron
Dirac's PositronArpan Saha
 
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)Rene Kotze
 
Physical Chemistry Homework Help
Physical Chemistry Homework HelpPhysical Chemistry Homework Help
Physical Chemistry Homework HelpEdu Assignment Help
 
Causality in special relativity
Causality in special relativityCausality in special relativity
Causality in special relativityMuhammad Ishaq
 

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 yearsSEENET-MTP
 
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 ...SEENET-MTP
 
Ivan Dimitrijević "Nonlocal cosmology"
Ivan Dimitrijević "Nonlocal cosmology"Ivan Dimitrijević "Nonlocal cosmology"
Ivan Dimitrijević "Nonlocal cosmology"SEENET-MTP
 
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"SEENET-MTP
 
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...SEENET-MTP
 
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...SEENET-MTP
 
Dragan Huterer "Novi pogledi na svemir"
Dragan Huterer "Novi pogledi na svemir"Dragan Huterer "Novi pogledi na svemir"
Dragan Huterer "Novi pogledi na svemir"SEENET-MTP
 
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...SEENET-MTP
 
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"SEENET-MTP
 
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...SEENET-MTP
 
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"SEENET-MTP
 
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 ...SEENET-MTP
 
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...SEENET-MTP
 
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...SEENET-MTP
 
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...SEENET-MTP
 
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...SEENET-MTP
 
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"SEENET-MTP
 
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...SEENET-MTP
 
Cemsinan Deliduman "Astrophysics with Weyl Gravity"
Cemsinan Deliduman "Astrophysics with Weyl Gravity"Cemsinan Deliduman "Astrophysics with Weyl Gravity"
Cemsinan Deliduman "Astrophysics with Weyl Gravity"SEENET-MTP
 
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"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

Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 

Recently uploaded (20)

Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 

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