Screen output - D-Flow Flexible Mesh - Delft3D
intro story D-Flow FM
D-Flow Flexible MeshD-Flow Flexible Mesh (D-Flow FM) is the new software engine for hydrodynamical simulations on unstructured grids in 1D-2D-3D. Together with the familiar curvilinear meshes from Delft3D 4, the unstructured grid can consist of triangles, pentagons (etc.) and 1D channel networks, all in one single mesh. It combines proven technology from the hydrodynamic engines of Delft3D 4 and SOBEK 2 and adds flexible administration, resulting in:
An overview of the current developments can be found here. The D-Flow FM - team would be delighted if you would participate in discussions on the generation of meshes, the specification of boundary conditions, the running of computations, and all kinds of other relevant topics. Feel free to share your smart questions and/or brilliant solutions!
======================================================= | Sub groups
|
Message Boards
Screen output
ET
Emanuele Terrile, modified 3 Years ago.
Screen output
Youngling Posts: 3 Join Date: 4/15/15 Recent Posts 00
Hello,
I'm wondering if it is possible to switch off the screen output during a delft3d-flow runs, i.e. "Time to finish xx% completed..." or at least to print it every xx time steps.
Thank you very much in advance
Emanuele
I'm wondering if it is possible to switch off the screen output during a delft3d-flow runs, i.e. "Time to finish xx% completed..." or at least to print it every xx time steps.
Thank you very much in advance
Emanuele
Adri Mourits, modified 3 Years ago.
RE: Screen output
Yoda Posts: 1221 Join Date: 1/3/11 Recent Posts 00
Hi Emanuele,
No, you can't switch that off. But (when using a script to run), you can catch the output and write that to a file:
On Windows: in file https://svn.oss.deltares.nl/repos/delft3d/trunk/examples/01_standard/run_flow2d3d.bat: Replace line 39:
by:
On Linux: in file https://svn.oss.deltares.nl/repos/delft3d/trunk/examples/01_standard/run_flow2d3d.sh: Replace line 38:
by:
Regards,
Adri
No, you can't switch that off. But (when using a script to run), you can catch the output and write that to a file:
On Windows: in file https://svn.oss.deltares.nl/repos/delft3d/trunk/examples/01_standard/run_flow2d3d.bat: Replace line 39:
"%exedir%\d_hydro.exe" %argfile% |
by:
"%exedir%\d_hydro.exe" %argfile% 1>screen.log 2>&1 |
On Linux: in file https://svn.oss.deltares.nl/repos/delft3d/trunk/examples/01_standard/run_flow2d3d.sh: Replace line 38:
$exedir/d_hydro.exe $argfile |
by:
$exedir/d_hydro.exe $argfile &>screen.log |
Regards,
Adri
ET
Emanuele Terrile, modified 3 Years ago.
RE: Screen output
Youngling Posts: 3 Join Date: 4/15/15 Recent Posts 00
Ok, thanks
Emanuele
Emanuele