This repository contains runs with the ChaProEV model
Omar Usmani ([email protected])
ChaProEV is released under the Apache 2.0 license. All accompanying documentation and manual are released under the Creative Commons BY-SA 4.0 license.
You can install ChaProEV with pip:
pip install ChaProEV
And the import ChaProEV in your code. You can of course use the various functions of ChaProEV, but the general use case is to run th model and focus on defining your case through the scenarios and their variants. In that case, the only piece of code you need is as follows (you just need to put the name of the folder where you put your case scenarios instead of the 'Mopo' example).
from ChaProEV import ChaProEV
if __name__ == '__main__':
case_name: str = 'Mopo'
ChaProEV.run_ChaProEV(case_name)