Skip to content

Commit bb101a0

Browse files
Update solutions.py
1 parent aa68691 commit bb101a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spacetimeengine/src/solutions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ def alt_gem(self):
601601

602602
return gravitomagnetic_metric
603603

604-
def dark_energy(self):
604+
def dark_energy(self):
605605
"""
606606
Description
607607
===========
@@ -625,10 +625,10 @@ def dark_energy(self):
625625
cosmological_constant = 0
626626
# Metric solution.
627627
metric = Matrix([
628-
[ 1, 0, 0, 0 ],
628+
[ c**2, 0, 0, 0 ],
629629
[ 0, -x0**2*c**2/(x0**2*c**2 - x1**2), 0, 0 ],
630-
[ 0, 0, -x0**2*c**2, 0 ],
631-
[ 0, 0, 0, -x0**2*c**2*sin(x2)**2 ]
630+
[ 0, 0, -x1**2, 0 ],
631+
[ 0, 0, 0, -x1**2*sin(x2)**2 ]
632632
])
633633

634634
# An array detailing the solution.

0 commit comments

Comments
 (0)