Write to unstructured VTK file
Subroutine to write 3D point data to VTK format
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer, | intent(in) | :: | dim1 |
dimension of the data (either 1:lines,2=quads or 3=hexas) |
||
| integer, | intent(in) | :: | vecdim |
dimension of coordinates |
||
| integer, | intent(in) | :: | nVal |
Number of nodal output variables |
||
| integer, | intent(in) | :: | NPlot(dim1) |
Number of output points per element : (nPlot+1)**dim1 |
||
| integer, | intent(in) | :: | nElems |
Number of output elements |
||
| character(len=*), | intent(in) | :: | VarNames(nVal) |
Names of all variables that will be written out |
||
| real(kind=wp), | intent(in) | :: | Coord(vecdim,1:PRODUCT(Nplot+1),nElems) | |||
| real(kind=wp), | intent(in) | :: | Values(nVal,1:PRODUCT(Nplot+1),nElems) |
Statevector |
||
| character(len=*), | intent(in) | :: | FileString |
Output file name |