blob: 4b3b4baae698e3b1166cf1048a2b16581a736b61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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")
|