-
Hello I am actually using TOUGH2 installed on a HPC cluster. The outputs i get are mainly two files: ".out" file and ".csv" file. My question is how to use the t2listing package to read one of those files ? or what option to specify in the INFILE of TOUGH2 to obtain a listing file ? I wonder also if there are other option to obtain a VTK or VTU file in order to prepare isosurfaces and more developed graphs not only time series of pressure and temperature ? and thank you very much for your help |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
The *.out file should be a listing file which you can read using Once you have read your results into a |
Beta Was this translation helpful? Give feedback.
The *.out file should be a listing file which you can read using
t2listing
.Once you have read your results into a
t2listing
object you can use itswrite_vtk()
method to produce *.vtu output for visualisation. To do that, you will also need to have amulgrid
object representing your grid geometry. If you don't have one of those, but your grid is rectangular, you might be able to reverse-engineer amulgrid
geometry using thet2grid
rectgeo()
method.