This is the code of the numerical experiments in our paper
Benner, Heiland (2020): Space and Chaos-expansion Galerkin POD Low-order Discretization of PDEs for Uncertainty Quantification
in the third version from December 2022.
Install dolfin and gmesh.
Then clone this repo and install the package with dependencies via
pip install -e . # make sure you use Python 3
if the installation of multim-galerkin-pod fails because of scikit-sparse
try pip install --no-deps multidim-galerkin-pod==1.1.0 instead.
The source are in gen_pod_uq and the files for the simulations are in scripts.
NOTE: For reproduction of the results, use version 1.1.4 of the package to be installed like
pip install gen-pod-uq==1.1.4from the pypi repo
cd mesh
mkdir 3D-mshs
source maketheme-3D.sh
To reproduce the results of the manuscript
cd scripts
source runitall.sh
You may want to comment out some parts.
The raw data of our simulations is provided in the folder rawdata. In order to postprocess copy it to the scripts/cached-data folder
# ## caution: this may replace computed data
# cp rawdata/*json scripts/cached-data/
# ## caution: this may replace computed datacd scripts
source postprocess.sh
# ## caution: this may replace computed data
# cp rawdata/ysoltens-for-kolmogorov-metric-evaluation/*npy scripts/cached-data/
# ## caution: this may replace computed datacd scripts
python3 kolmogorov-metrix.pyIn order to (only) compute the plots, one may run a reduced experiment by setting
onlyplots = Truein kolmogorov-metrix.py.