File size: 3,407 Bytes
c6639ba
 
c291038
2386211
c6639ba
c291038
 
 
c6639ba
 
676e5d8
c6639ba
676e5d8
c6639ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2386211
c6639ba
 
 
 
 
 
2386211
c6639ba
2386211
c6639ba
 
 
 
2386211
c6639ba
 
 
 
 
2386211
c6639ba
 
 
2386211
c6639ba
2386211
c6639ba
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# app.py
from flask import Flask, send_from_directory, jsonify, request
import os
import json
import errno

app = Flask(__name__)

# Directory to store settings
SETTINGS_DIR = "settings"

# Ensure the settings directory exists and has the correct permissions
try:
    if not os.path.exists(SETTINGS_DIR):
        os.makedirs(SETTINGS_DIR, mode=0o775)
    os.chmod(SETTINGS_DIR, 0o775)
except OSError as e:
    print(f"Error setting up settings directory: {e}")

# Real-world simulation parameters (unscaled)
simulation_params = {
    "sun": {
        "mass": 1.989e30,  # Real mass in kg
        "position": [0, 0, 0],
        "orbital_velocity": 0,  # Sun is stationary
    },
    "earth": {
        "mass": 5.972e24,  # Real mass in kg
        "position": [149.6e6, 0, 0],  # 1 AU in km
        "orbital_velocity": 29.8,  # Real orbital velocity in km/s
    },
    "mars": {
        "mass": 6.417e23,  # Real mass in kg
        "position": [227.9e6, 0, 0],  # 1.52 AU in km
        "orbital_velocity": 24.1,  # Real orbital velocity in km/s
    },
    "fluid_speed": 0.1,
    "fluid_friction": 0.9,
    "fluid_deflection": 0.1,
}

# Serve the frontend
@app.route('/')
def serve_index():
    return send_from_directory('static', 'index.html')

# Serve static files (CSS, JS)
@app.route('/static/<path:path>')
def serve_static(path):
    return send_from_directory('static', path)

# API to get simulation parameters
@app.route('/api/params', methods=['GET'])
def get_params():
    return jsonify(simulation_params)

# API to update simulation parameters
@app.route('/api/params', methods=['POST'])
def update_params():
    global simulation_params
    data = request.get_json()
    simulation_params.update(data)
    return jsonify({"status": "success", "params": simulation_params})

# API to save settings to a JSON file
@app.route('/api/save', methods=['POST'])
def save_settings():
    try:
        filename = os.path.join(SETTINGS_DIR, "settings.json")
        with open(filename, 'w') as f:
            json.dump(simulation_params, f, indent=4)
        return jsonify({"status": "success", "message": "Settings saved successfully"})
    except PermissionError as e:
        return jsonify({"status": "error", "message": "Permission denied: Unable to save settings. Please check directory permissions."}), 500
    except Exception as e:
        return jsonify({"status": "error", "message": f"Error saving settings: {str(e)}"}), 500

# API to load settings from a JSON file
@app.route('/api/load', methods=['GET'])
def load_settings():
    global simulation_params
    try:
        filename = os.path.join(SETTINGS_DIR, "settings.json")
        if os.path.exists(filename):
            with open(filename, 'r') as f:
                simulation_params = json.load(f)
            return jsonify({"status": "success", "params": simulation_params})
        else:
            return jsonify({"status": "error", "message": "No saved settings found"}), 404
    except PermissionError as e:
        return jsonify({"status": "error", "message": "Permission denied: Unable to load settings. Please check directory permissions."}), 500
    except Exception as e:
        return jsonify({"status": "error", "message": f"Error loading settings: {str(e)}"}), 500

if __name__ == '__main__':
    port = int(os.environ.get('PORT', 7860))  # Default port for Hugging Face Spaces
    app.run(host='0.0.0.0', port=port)