-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
91 lines (91 loc) · 2.52 KB
/
config.json
File metadata and controls
91 lines (91 loc) · 2.52 KB
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
{
"application": {
"title": "Physics Application Suite",
"version": "2.0.2",
"description": "Comprehensive physics simulation with real experimental data integration - 9 physics modules including advanced topics",
"window": {
"width": 1200,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"centered": true
}
},
"theme": {
"colors": {
"background": "#2b2b2b",
"foreground": "#ffffff",
"accent": "#4a9eff",
"hover": "#5ba0ff",
"panel": "#3c3c3c",
"border": "#555555",
"success": "#4caf50",
"warning": "#ff9800",
"error": "#f44336"
},
"fonts": {
"main": ["Arial", 10],
"heading": ["Arial", 12, "bold"],
"console": ["Consolas", 9],
"formula": ["Consolas", 10]
}
},
"physics": {
"mechanics": {
"defaultValues": {
"velocity": 20,
"angle": 45,
"height": 0,
"gravity": 9.81
},
"limits": {
"velocityMax": 1000,
"angleMax": 90,
"heightMax": 1000,
"gravityMax": 50
}
},
"plotting": {
"dpi": 100,
"figsize": [8, 6],
"gridAlpha": 0.3,
"lineWidth": 2
},
"calculator": {
"calculationTypes": 19,
"categories": [
"mechanics", "electromagnetism", "thermodynamics", "quantum_physics",
"waves_optics", "fluid_dynamics", "relativity", "nuclear_physics", "astrophysics"
]
},
"unitConverter": {
"unitCategories": 21,
"categories": [
"Length", "Mass", "Time", "Energy", "Power", "Force", "Pressure",
"Temperature", "Electric Current", "Voltage", "Resistance",
"Magnetic Field", "Frequency", "Heat Capacity", "Entropy",
"Activity", "Absorbed Dose", "Equivalent Dose", "Luminosity",
"Astronomical Distance", "Wavelength"
]
},
"physicsModules": {
"enabled": [
"classical_mechanics", "electromagnetism", "thermodynamics",
"quantum_physics", "wave_optics", "fluid_dynamics",
"relativity", "nuclear_physics", "astrophysics"
],
"advanced": ["fluid_dynamics", "relativity", "nuclear_physics", "astrophysics"]
}
},
"features": {
"autoSave": false,
"autoExport": false,
"animations": true,
"tooltips": true,
"statusUpdates": true,
"timeDisplay": true,
"advancedPhysics": true,
"expandedCalculator": true,
"extendedUnitConverter": true
}
}