Changes between Version 3 and Version 4 of Examples/WRF


Ignore:
Timestamp:
07/20/18 11:59:26 (6 years ago)
Author:
Herwig Zilken
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Examples/WRF

    v3 v4  
    8888
    8989== !ParaView Script ==
    90 The images are generated by the script "paraview_movie_script.py", or by an upgraded version called "paraview_movie_script_test.py", which was developed later and can better handle the progression from time animation to the camera flight.
    91 Generelly, this script reads structuredGrid.xdmf and structuredGrid_2D.xdmf.
    92 Also some stored colortable are loaded (e.g. "colortable_qvapor.json") and assigned to the variables. The structured grid is resampled to image data of size 1600x1600x100, which is volume rendered by one variable (e.g. CLDFRA or QVAPOR).
     90The images are generated by the script "paraview_movie_script.py", or, more specifically, by an upgraded version called "paraview_movie_script_test.py", which was developed later and can better handle the progression from time animation to the camera flight.
     91This script loads structuredGrid.xdmf for 3D volume rendering and structuredGrid_2D.xdmf for surface coloring.
     92Also some colortable are loaded from file (e.g. "colortable_qvapor.json") and assigned to the variables. The 3D structured grid is resampled to image data of size 1600x1600x100, which is volume rendered for one variable (e.g. CLDFRA or QVAPOR).
    9393Predefined camera positions are loaded from "cam4.pvcvbc" and are used in 3 keyframes for the camera flight.
    9494
    95 In a first try we had problems with !ParaView, because during the camera flight, which only shows the last timestep, !ParaView loaded this timestep again and again for each camera move, slowing down the rendering process significantly. Therefore the script "paraview_movie_script_singletimestep.py" was developed, which (in connection with "make_xdmf_structuredgrid_singletimesteps.py") only loaded the last timestep for the camera flight. Actually, this approach is no longer necessary, as a work around was found and implemented in "paraview_movie_script_test.py".
     95In a first try we had problems with !ParaView, because during the camera flight, which only shows the last timestep, !ParaView loaded this single timestep again and again for each camera move, slowing down the rendering process significantly. Therefore the script "paraview_movie_script_singletimestep.py" was developed, which (in connection with "make_xdmf_structuredgrid_singletimesteps.py") only loaded the last timestep for the camera flight. Actually, this approach is no longer necessary, as a workaround was found and implemented in "paraview_movie_script_test.py". The workaround was just to disable the timeTrack from using the animation time by "timeTrack.UseAnimationTime = 0".