Semi-Lagrangian Library
Modular library for kinetic and gyrokinetic simulations of plasmas in fusion energy devices.
|
Write file for gnuplot to display 2d field. More...
Private Member Functions | |
subroutine | sll_gnuplot_corect_2d (xmin, xmax, nx, ymin, ymax, ny, array, array_name, iplot, error) |
Write a data file plotable by gnuplot to visualize a 2d field. More... | |
subroutine | sll_gnuplot_rect_2d (nx, xvec, ny, yvec, array, array_name, iplot, error) |
Write a data file plotable by gnuplot to visualize a 2d field on structured rectangular mesh where spacing is not constant. More... | |
subroutine | sll_gnuplot_curv_2d (nx, ny, x, y, array, array_name, iplot, error) |
write a data file plotable by gnuplot. More... | |
subroutine | sll_gnuplot_mesh_2d (nx, ny, xcoord, ycoord, array_name, error) |
Write a data file plotable by gnuplot to visualize a 2d curvilinear mesh. More... | |
subroutine | write_unstructured_field (field_at_node, field_name, coord, nodes, plot_number) |
Write a field on unstructures mesh of triangles. More... | |
Write file for gnuplot to display 2d field.
Definition at line 55 of file sll_m_gnuplot.F90.
|
private |
Write a data file plotable by gnuplot to visualize a 2d field.
Axis are rectangular and spacing is constant
xmin | Box corners |
xmax | Box corners |
ymin | Box corners |
ymax | Box corners |
nx | x points number |
ny | y points number |
array(,:) | data |
array_name | field name |
iplot | plot counter |
error | error code |
Definition at line 280 of file sll_m_gnuplot.F90.
|
private |
write a data file plotable by gnuplot.
We visualize a 2d field on structured curvilinear mesh
ny | y points number |
x(nx,ny) | x coordinates |
y(nx,ny) | y coordiantes |
array(nx,ny) | data |
array_name | field name |
iplot | plot counter |
error | error code |
Definition at line 493 of file sll_m_gnuplot.F90.
|
private |
Write a data file plotable by gnuplot to visualize a 2d curvilinear mesh.
nx | x points number | |
ny | y points number | |
xcoord | x coordinates | |
ycoord | y coordiantes | |
array_name | field name | |
error | error code | |
[in] | nx | x points number |
[in] | ny | y points number |
[in] | xcoord | x coordinates |
[in] | ycoord | y coordiantes |
[in] | array_name | field name |
[out] | error | error code |
Definition at line 438 of file sll_m_gnuplot.F90.
|
private |
Write a data file plotable by gnuplot to visualize a 2d field on structured rectangular mesh where spacing is not constant.
nx | x points number |
ny | y points number |
xvec(nx) | x coordinates |
yvec(ny) | y coordiantes |
array(nx,ny) | data |
array_name | field name |
iplot | plot counter |
error | error code |
Definition at line 367 of file sll_m_gnuplot.F90.
|
private |
Write a field on unstructures mesh of triangles.
[in] | field_at_nodes | field value on nodes |
[in] | field_name | field name use as prefix for file name |
[in] | coord | coordinates of nodes |
[in] | nodes | mesh connections |
[in] | plot_number | plot counter used for file name |
Definition at line 563 of file sll_m_gnuplot.F90.