Afivo
0.3
|
This module contains wrapper functions to simplify writing Silo files. More...
Functions/Subroutines | |
subroutine, public | silo_create_file (filename, dbix) |
subroutine, public | silo_open_file (filename, dbix) |
subroutine, public | silo_close_file (dbix) |
subroutine, public | silo_mkdir (dbix, dirname) |
subroutine, public | silo_set_time_varying (dbix) |
Write two entries to the Silo file so that Visit treats it as a time-varying database. More... | |
subroutine, public | silo_add_grid (dbix, gridname, n_dim, N_r, r_min, dr, lo_offset, hi_offset) |
subroutine, public | silo_add_var (dbix, dataname, gridname, d_packed, d_shape) |
subroutine, public | silo_set_mmesh_grid (dbix, mmname, gridnames, n_cycle, time) |
subroutine, public | silo_set_mmesh_var (dbix, mvname, mmname, datanames, n_cycle, time) |
This module contains wrapper functions to simplify writing Silo files.
subroutine, public m_write_silo::silo_create_file | ( | character(len=*), intent(in) | filename, |
integer, intent(out) | dbix | ||
) |
Definition at line 27 of file m_write_silo.f90.
subroutine, public m_write_silo::silo_open_file | ( | character(len=*), intent(in) | filename, |
integer | dbix | ||
) |
Definition at line 42 of file m_write_silo.f90.
subroutine, public m_write_silo::silo_close_file | ( | integer, intent(in) | dbix | ) |
Definition at line 54 of file m_write_silo.f90.
subroutine, public m_write_silo::silo_mkdir | ( | integer, intent(in) | dbix, |
character(len=*), intent(in) | dirname | ||
) |
Definition at line 65 of file m_write_silo.f90.
subroutine, public m_write_silo::silo_set_time_varying | ( | integer, intent(in) | dbix | ) |
Write two entries to the Silo file so that Visit treats it as a time-varying database.
Definition at line 79 of file m_write_silo.f90.
subroutine, public m_write_silo::silo_add_grid | ( | integer, intent(in) | dbix, |
character(len=*), intent(in) | gridname, | ||
integer, intent(in) | n_dim, | ||
integer, dimension(:), intent(in) | N_r, | ||
real(dp), dimension(:), intent(in) | r_min, | ||
real(dp), dimension(:), intent(in) | dr, | ||
integer, dimension(n_dim), intent(in) | lo_offset, | ||
integer, dimension(n_dim), intent(in) | hi_offset | ||
) |
Definition at line 103 of file m_write_silo.f90.
subroutine, public m_write_silo::silo_add_var | ( | integer, intent(in) | dbix, |
character(len=*), intent(in) | dataname, | ||
character(len=*), intent(in) | gridname, | ||
real(dp), dimension(:), intent(in) | d_packed, | ||
integer, dimension(:), intent(in) | d_shape | ||
) |
Definition at line 187 of file m_write_silo.f90.
subroutine, public m_write_silo::silo_set_mmesh_grid | ( | integer, intent(in) | dbix, |
character(len=*), intent(in) | mmname, | ||
character(len=*), dimension(:), intent(in) | gridnames, | ||
integer, intent(in), optional | n_cycle, | ||
real(dp), intent(in), optional | time | ||
) |
Definition at line 234 of file m_write_silo.f90.
subroutine, public m_write_silo::silo_set_mmesh_var | ( | integer, intent(in) | dbix, |
character(len=*), intent(in) | mvname, | ||
character(len=*), intent(in) | mmname, | ||
character(len=*), dimension(:), intent(in) | datanames, | ||
integer, intent(in), optional | n_cycle, | ||
real(dp), intent(in), optional | time | ||
) |
Definition at line 295 of file m_write_silo.f90.