diff options
| author | stainer_t <thomas.stainer@oecd-nea.org> | 2025-09-08 13:48:49 +0200 |
|---|---|---|
| committer | stainer_t <thomas.stainer@oecd-nea.org> | 2025-09-08 13:48:49 +0200 |
| commit | 7dfcc480ba1e19bd3232349fc733caef94034292 (patch) | |
| tree | 03ee104eb8846d5cc1a981d267687a729185d3f3 /PyGan/data/testVVER_proc/vverGEO.py | |
Initial commit from Polytechnique Montreal
Diffstat (limited to 'PyGan/data/testVVER_proc/vverGEO.py')
| -rw-r--r-- | PyGan/data/testVVER_proc/vverGEO.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/PyGan/data/testVVER_proc/vverGEO.py b/PyGan/data/testVVER_proc/vverGEO.py new file mode 100644 index 0000000..ccc4452 --- /dev/null +++ b/PyGan/data/testVVER_proc/vverGEO.py @@ -0,0 +1,25 @@ +############################################################################## +# # +# Description : PyGan scritp for VVER pin cell simulation with DRAGON5 # +# Author : L. Fede # +# Date : 2023 # +# # +############################################################################## +# +import lifo +import cle2000 + +def vverGEO(namGEOM): + + # Lifo + myLifo=lifo.new() + myLifo.pushEmpty(namGEOM, "LCM") + + # Execution + geoVVER = cle2000.new('vverGEO',myLifo,1) + geoVVER.exec() + + # Recover + myLifo.lib() + pyGEOM = myLifo.node(namGEOM) + return pyGEOM |
