From 7e66c74f70ef7b58e749b6d3d24cf573805563b6 Mon Sep 17 00:00:00 2001 From: saji Date: Tue, 26 Nov 2024 09:02:17 -0600 Subject: [PATCH] added stuff --- .gitignore | 1 + src/solarcarsim/environments.py | 3 +++ src/solarcarsim/physsim.py | 5 +++++ src/solarcarsim/vis.py | 0 4 files changed, 9 insertions(+) create mode 100644 src/solarcarsim/environments.py create mode 100644 src/solarcarsim/physsim.py create mode 100644 src/solarcarsim/vis.py diff --git a/.gitignore b/.gitignore index 3a8816c..59599ec 100644 --- a/.gitignore +++ b/.gitignore @@ -160,3 +160,4 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +.aider* diff --git a/src/solarcarsim/environments.py b/src/solarcarsim/environments.py new file mode 100644 index 0000000..efd375f --- /dev/null +++ b/src/solarcarsim/environments.py @@ -0,0 +1,3 @@ +# models to generate different environments that the car can drive in. +# This includes terrain, clouds, wind, solar conditions, and the route along the terrain. + diff --git a/src/solarcarsim/physsim.py b/src/solarcarsim/physsim.py new file mode 100644 index 0000000..ee6f806 --- /dev/null +++ b/src/solarcarsim/physsim.py @@ -0,0 +1,5 @@ +# Physical simulations of the car +# This includes Car parameters, slope, velocity, aerodynamic resistance, +# rolling resistance, motor efficiency, solar inputs, etc. + + diff --git a/src/solarcarsim/vis.py b/src/solarcarsim/vis.py new file mode 100644 index 0000000..e69de29