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/rDragView.py | |
Initial commit from Polytechnique Montreal
Diffstat (limited to 'PyGan/data/rDragView.py')
| -rw-r--r-- | PyGan/data/rDragView.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/PyGan/data/rDragView.py b/PyGan/data/rDragView.py new file mode 100644 index 0000000..4b3b4ba --- /dev/null +++ b/PyGan/data/rDragView.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python + +# Purpose: +# Launcher file. +# +# Copyright: +# Copyright (C) 2025 Polytechnique Montreal +# This library is free software; you can redistribute it and/or modify it under the terms +# of the GNU Lesser General Public License as published by the Free Software Foundation; +# either version 2.1 of the License, or (at your option) any later version +# +# Author(s): Atyab A. Calloo + +import os +import sys + +from utils import parserfunc +from get_lcm import read_lcm_obj, run_pydragon +from vtu_tools import create_vtu + +verbose=1 +test_name="3DHEX" + +Geom, Mcro, Trck, Flux = run_pydragon(test_name,verbose) + +### CREATE MATERIAL AND FLUX VTU FILES +create_vtu(Geom, Mcro, Trck, Flux, test_name, verbose) + +print("test rDragView completed") |
