A repository of physics models and components for use with Artifact.
The physics models in this repository are specified in Jupyter notebooks for interactive development.
To work with these models, follow these steps:
-
Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows, use `venv\Scripts\activate` -
Install the required dependencies:
pip install -r requirements.txt -
Launch Jupyter Notebook:
jupyter notebook -
Open and run the desired notebook.
-
To interact with the notebook outputs from the command line, use:
jupyter console --existingThis connects to the running notebook kernel, allowing you to access variables and execute code interactively.