Octopus
|
Functions/Subroutines | |
subroutine, public | dvtk_out_cf (filename, namespace, fieldname, ierr, cf_in, cube, spacing, unit) |
Writes a cube_function in VTK legacy format see http: More... | |
subroutine, public | dvtk_out_cf_vector (filename, namespace, fieldname, ierr, cf_in, vector_dim, cube, spacing, unit) |
Writes a cube_function in VTK legacy format see http: More... | |
subroutine, public | dvtk_out_cf_structured (filename, namespace, fieldname, ierr, cf_in, cube, unit, points, ascii) |
Writes a mesh_function in VTK legacy format for structured grid data (i.e. curvilinear coordinates). The data is defined on a mesh that is topologically equivalent to a cubic grid. In other words, it must be laid on a cubic array but the value of each point coordinate is free in space. More... | |
subroutine, public | dvtk_out_bz_structured (filename, namespace, fieldname, ierr, axis, fin, unit, points1BZ, ascii) |
Writes a mesh_function in VTK legacy format for structured grid data in reciprocal space. The data is defined on a mesh that is topologically equivalent to a cubic grid. In other words, it must be laid on a cubic array but the value of each point coordinate is free in space. More... | |
subroutine, public | zvtk_out_cf (filename, namespace, fieldname, ierr, cf_in, cube, spacing, unit) |
Writes a cube_function in VTK legacy format see http: More... | |
subroutine, public | zvtk_out_cf_vector (filename, namespace, fieldname, ierr, cf_in, vector_dim, cube, spacing, unit) |
Writes a cube_function in VTK legacy format see http: More... | |
subroutine, public | zvtk_out_cf_structured (filename, namespace, fieldname, ierr, cf_in, cube, unit, points, ascii) |
Writes a mesh_function in VTK legacy format for structured grid data (i.e. curvilinear coordinates). The data is defined on a mesh that is topologically equivalent to a cubic grid. In other words, it must be laid on a cubic array but the value of each point coordinate is free in space. More... | |
subroutine, public | zvtk_out_bz_structured (filename, namespace, fieldname, ierr, axis, fin, unit, points1BZ, ascii) |
Writes a mesh_function in VTK legacy format for structured grid data in reciprocal space. The data is defined on a mesh that is topologically equivalent to a cubic grid. In other words, it must be laid on a cubic array but the value of each point coordinate is free in space. More... | |
subroutine, public vtk_oct_m::dvtk_out_cf | ( | character(len=*), intent(in) | filename, |
type(namespace_t), intent(in) | namespace, | ||
character(len=*), intent(in) | fieldname, | ||
integer, intent(out) | ierr, | ||
type(cube_function_t), intent(in) | cf_in, | ||
type(cube_t), intent(in) | cube, | ||
real(real64), dimension(:), intent(in) | spacing, | ||
type(unit_t), intent(in) | unit | ||
) |
Writes a cube_function in VTK legacy format see http:
[in] | filename | the file name |
[in] | namespace | namespace for directory |
[in] | fieldname | the name of the field |
[out] | ierr | error message |
[in] | cf_in | the cube_function to be written |
[in] | cube | the underlying cube mesh |
[in] | spacing | the mesh spacing already converted to units_out |
[in] | unit | unit of data in cf |
subroutine, public vtk_oct_m::dvtk_out_cf_vector | ( | character(len=*), intent(in) | filename, |
type(namespace_t), intent(in) | namespace, | ||
character(len=*), intent(in) | fieldname, | ||
integer, intent(out) | ierr, | ||
type(cube_function_t), dimension(:), intent(in) | cf_in, | ||
integer, intent(in) | vector_dim, | ||
type(cube_t), intent(in) | cube, | ||
real(real64), dimension(:), intent(in) | spacing, | ||
type(unit_t), intent(in) | unit | ||
) |
Writes a cube_function in VTK legacy format see http:
[in] | filename | the file name |
[in] | namespace | namespace for directory |
[in] | fieldname | the name of the field |
[out] | ierr | error message |
[in] | cf_in | the cube_function to be written |
[in] | cube | the underlying cube mesh |
[in] | spacing | the mesh spacing already converted to units_out |
[in] | unit | unit of data in cf |
subroutine, public vtk_oct_m::dvtk_out_cf_structured | ( | character(len=*), intent(in) | filename, |
type(namespace_t), intent(in) | namespace, | ||
character(len=*), intent(in) | fieldname, | ||
integer, intent(out) | ierr, | ||
type(cube_function_t), intent(in) | cf_in, | ||
type(cube_t), intent(in) | cube, | ||
type(unit_t), intent(in) | unit, | ||
real(real64), dimension(:,:,:,:), intent(in) | points, | ||
logical, intent(in), optional | ascii | ||
) |
Writes a mesh_function in VTK legacy format for structured grid data (i.e. curvilinear coordinates). The data is defined on a mesh that is topologically equivalent to a cubic grid. In other words, it must be laid on a cubic array but the value of each point coordinate is free in space.
[in] | filename | the file name |
[in] | namespace | namespace for directory |
[in] | fieldname | the name of the field |
[out] | ierr | error message |
[in] | cf_in | the cube_function to be written |
[in] | cube | the underlying cube mesh |
[in] | unit | unit of data in cf |
[in] | points | points(x,y,z,1:3): point coordinates in units_out |
subroutine, public vtk_oct_m::dvtk_out_bz_structured | ( | character(len=*), intent(in) | filename, |
type(namespace_t), intent(in) | namespace, | ||
character(len=*), intent(in) | fieldname, | ||
integer, intent(out) | ierr, | ||
integer, dimension(3), intent(in) | axis, | ||
real(real64), dimension(:), intent(in) | fin, | ||
type(unit_t), intent(in) | unit, | ||
real(real64), dimension(:,:), intent(in) | points1BZ, | ||
logical, intent(in), optional | ascii | ||
) |
Writes a mesh_function in VTK legacy format for structured grid data in reciprocal space. The data is defined on a mesh that is topologically equivalent to a cubic grid. In other words, it must be laid on a cubic array but the value of each point coordinate is free in space.
[in] | filename | the file name |
[in] | namespace | namespace for directory |
[in] | fieldname | the name of the field |
[out] | ierr | error message |
[in] | axis | axis defining the Brillouin zone |
[in] | fin | the function to be written |
[in] | unit | unit of data in cf |
[in] | points1bz | points1BZ(1:3,nik): k-point coordinates |
subroutine, public vtk_oct_m::zvtk_out_cf | ( | character(len=*), intent(in) | filename, |
type(namespace_t), intent(in) | namespace, | ||
character(len=*), intent(in) | fieldname, | ||
integer, intent(out) | ierr, | ||
type(cube_function_t), intent(in) | cf_in, | ||
type(cube_t), intent(in) | cube, | ||
real(real64), dimension(:), intent(in) | spacing, | ||
type(unit_t), intent(in) | unit | ||
) |
Writes a cube_function in VTK legacy format see http:
[in] | filename | the file name |
[in] | namespace | namespace for directory |
[in] | fieldname | the name of the field |
[out] | ierr | error message |
[in] | cf_in | the cube_function to be written |
[in] | cube | the underlying cube mesh |
[in] | spacing | the mesh spacing already converted to units_out |
[in] | unit | unit of data in cf |
subroutine, public vtk_oct_m::zvtk_out_cf_vector | ( | character(len=*), intent(in) | filename, |
type(namespace_t), intent(in) | namespace, | ||
character(len=*), intent(in) | fieldname, | ||
integer, intent(out) | ierr, | ||
type(cube_function_t), dimension(:), intent(in) | cf_in, | ||
integer, intent(in) | vector_dim, | ||
type(cube_t), intent(in) | cube, | ||
real(real64), dimension(:), intent(in) | spacing, | ||
type(unit_t), intent(in) | unit | ||
) |
Writes a cube_function in VTK legacy format see http:
[in] | filename | the file name |
[in] | namespace | namespace for directory |
[in] | fieldname | the name of the field |
[out] | ierr | error message |
[in] | cf_in | the cube_function to be written |
[in] | cube | the underlying cube mesh |
[in] | spacing | the mesh spacing already converted to units_out |
[in] | unit | unit of data in cf |
subroutine, public vtk_oct_m::zvtk_out_cf_structured | ( | character(len=*), intent(in) | filename, |
type(namespace_t), intent(in) | namespace, | ||
character(len=*), intent(in) | fieldname, | ||
integer, intent(out) | ierr, | ||
type(cube_function_t), intent(in) | cf_in, | ||
type(cube_t), intent(in) | cube, | ||
type(unit_t), intent(in) | unit, | ||
real(real64), dimension(:,:,:,:), intent(in) | points, | ||
logical, intent(in), optional | ascii | ||
) |
Writes a mesh_function in VTK legacy format for structured grid data (i.e. curvilinear coordinates). The data is defined on a mesh that is topologically equivalent to a cubic grid. In other words, it must be laid on a cubic array but the value of each point coordinate is free in space.
[in] | filename | the file name |
[in] | namespace | namespace for directory |
[in] | fieldname | the name of the field |
[out] | ierr | error message |
[in] | cf_in | the cube_function to be written |
[in] | cube | the underlying cube mesh |
[in] | unit | unit of data in cf |
[in] | points | points(x,y,z,1:3): point coordinates in units_out |
subroutine, public vtk_oct_m::zvtk_out_bz_structured | ( | character(len=*), intent(in) | filename, |
type(namespace_t), intent(in) | namespace, | ||
character(len=*), intent(in) | fieldname, | ||
integer, intent(out) | ierr, | ||
integer, dimension(3), intent(in) | axis, | ||
complex(real64), dimension(:), intent(in) | fin, | ||
type(unit_t), intent(in) | unit, | ||
real(real64), dimension(:,:), intent(in) | points1BZ, | ||
logical, intent(in), optional | ascii | ||
) |
Writes a mesh_function in VTK legacy format for structured grid data in reciprocal space. The data is defined on a mesh that is topologically equivalent to a cubic grid. In other words, it must be laid on a cubic array but the value of each point coordinate is free in space.
[in] | filename | the file name |
[in] | namespace | namespace for directory |
[in] | fieldname | the name of the field |
[out] | ierr | error message |
[in] | axis | axis defining the Brillouin zone |
[in] | fin | the function to be written |
[in] | unit | unit of data in cf |
[in] | points1bz | points1BZ(1:3,nik): k-point coordinates |