Advertisement
Guest User

Untitled

a guest
Mar 26th, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. mpl = 1/Sqrt[6.70837*10^-39];
  2. gsT = 106.75;
  3. Sup[\[CapitalLambda]I_?NumericQ, \[CapitalGamma]I_?NumericQ] :=
  4. Block[{a, \[Rho]r, Trad, tf, t},
  5. tf = 10/\[CapitalGamma]I;
  6. {a, \[Rho]r} =
  7. NDSolveValue[{a'[t] ==
  8. a[t]*Sqrt[(8 \[Pi])/(3 mpl^2) (\[Rho]r[
  9. t] + \[CapitalLambda]I^4/
  10. a[t]^3 Exp[-\[CapitalGamma]I t])], \[Rho]r'[t] +
  11. 4*Sqrt[(8 \[Pi])/(3 mpl^2) (\[Rho]r[
  12. t] + \[CapitalLambda]I^4/
  13. a[t]^3 Exp[-\[CapitalGamma]I t])] \[Rho]r[
  14. t] == \[CapitalGamma]I \[CapitalLambda]I^4/
  15. a[t]^3 Exp[-\[CapitalGamma]I t],
  16. a[0] == 1, \[Rho]r[0] == 0}, {a, \[Rho]r}, {t, 0, tf},
  17. MaxStepFraction -> 10^-5, MaxSteps -> 10^6];
  18. Trad[t_] := (30/(\[Pi]^2 gsT) \[Rho]r[t])^(1/4);
  19. Trad[tf]*a[tf]
  20. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement