Docs: here.
More or less generic parameter estimator for UG4.
To use this package, you need python3 installed. You can then use
python -m pip install -r requirements.txt
As this package is under heavy development, I chose not to build a python binary package after each change. I opted to have the package importable by folder.
If this package is used with UG installed (probably):
When using this package, just make sure the eniviroment variable "UG4-ROOT" is defined. Then, just append the lines
sys.path.append(os.path.join(os.environ["UG4_ROOT"],"plugins","ParameterEstimation"))
to the top of your script.
If this package is used standalone:
To use this, add the folder containing the "UGParameterErstimator"-folder
to your PYTHONPATH-enveriment variable. Under Linux, add export PYTHONPATH=$PYTHONPATH:$HOME/git
(depending on the location of the folder) to your ~/.bashrc and execute source ~/.bashrc
to update your PYTHONPATH.
In both cases the package can be imported with
from UGParameterEstimator import *
See the folder "example".