Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,12 +4,28 @@ import os
|
|
4 |
|
5 |
app = Flask(__name__)
|
6 |
|
7 |
-
#
|
|
|
|
|
8 |
simulation_params = {
|
9 |
-
"
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
}
|
14 |
|
15 |
# Serve the frontend
|
|
|
4 |
|
5 |
app = Flask(__name__)
|
6 |
|
7 |
+
# Updated simulation parameters with real-world masses (scaled down for simulation)
|
8 |
+
# Sun: 1.989 x 10^30 kg, Earth: 5.972 x 10^24 kg, Mars: 6.417 x 10^23 kg
|
9 |
+
# Scale factor: 1e-26 for manageable numbers
|
10 |
simulation_params = {
|
11 |
+
"sun": {
|
12 |
+
"mass": 1.989e4, # Scaled mass (1.989 x 10^30 kg * 1e-26)
|
13 |
+
"position": [0, 0, 0],
|
14 |
+
"orbital_velocity": 0, # Sun is stationary
|
15 |
+
},
|
16 |
+
"earth": {
|
17 |
+
"mass": 5.972e-2, # Scaled mass (5.972 x 10^24 kg * 1e-26)
|
18 |
+
"position": [10, 0, 0], # Approx 1 AU scaled down (149.6 million km -> 10 units)
|
19 |
+
"orbital_velocity": 0.0298, # 29.8 km/s scaled down
|
20 |
+
},
|
21 |
+
"mars": {
|
22 |
+
"mass": 6.417e-3, # Scaled mass (6.417 x 10^23 kg * 1e-26)
|
23 |
+
"position": [15, 0, 0], # Approx 1.52 AU scaled down (227.9 million km -> 15 units)
|
24 |
+
"orbital_velocity": 0.0241, # 24.1 km/s scaled down
|
25 |
+
},
|
26 |
+
"fluid_speed": 0.1,
|
27 |
+
"fluid_friction": 0.9, # Default friction factor
|
28 |
+
"fluid_deflection": 0.1, # Default deflection strength
|
29 |
}
|
30 |
|
31 |
# Serve the frontend
|