The standard base class for all Veydra system dynamics models.
pip install veydra-model-standardFor development from local source:
pip install -e .from veydra_model_standard import VeydraModelStandard
class MyModel(VeydraModelStandard):
def __init__(self):
super().__init__()
# Your model implementation- Standardized model interface
- Built-in variable management
- Configuration loading
- Simulation engine
- Data export capabilities
# Install in editable mode
cd veydra-model-standard
pip install -e .
# Run tests
python -m pytest tests/