0.6.0
Loading...
Searching...
No Matches
computer.f90 File Reference

Data Types

interface  mod_finite_differences_computer::fd_compute
 

Modules

module  mod_finite_differences_computer
 Computer for evaluating Finite Difference Schemes.
 

Functions/Subroutines

double precision function mod_finite_differences_computer::fd_compute_from_values (scheme, steps, values)
 Compute the finite difference via the scheme by giving the associated field values.
 
double precision function mod_finite_differences_computer::fd_weno_compute_from_values (scheme, step, steps, values)
 Compute the WENO finite difference via the scheme by giving the associated field values.
 
double precision function mod_finite_differences_computer::fd_compute_from_scheme (scheme, values)
 Compute the finite difference of the scheme by giving the associated field values.
 
double precision function mod_finite_differences_computer::fd_compute_from_array (scheme, step_array, array, index)
 Compute the finite difference via the scheme by giving the associated array, the step array (see below), the index where to compute the FD.
 
double precision function mod_finite_differences_computer::fd_compute_from_field (scheme, x_step_array, y_step_array, z_step_array, field, i, j, k, axis)
 Compute the finite difference via the scheme by giving the associated field, the step arrays for each dimension, the indices (position) and the direction (x,y or z).
 
double precision function mod_finite_differences_computer::fd_compute_from_field_offset (scheme, x_step_array, y_step_array, z_step_array, field, i, j, k, axis, offset)
 Compute the finite difference via the scheme by giving the associated field, the step arrays for each dimension, the indices (position) and the direction (x,y or z).
 
double precision function mod_finite_differences_computer::fd_weno_compute_from_array (scheme, step, step_array, array, index)
 Compute the WENO finite difference via the scheme by giving the associated array, the step array (see below), the index where to compute the FD.
 
double precision function mod_finite_differences_computer::fd_weno_compute_from_field (scheme, step, x_step_array, y_step_array, z_step_array, field, i, j, k, axis)
 Compute the WENO finite difference via the scheme by giving the associated field, the step arrays for each dimension, the indices (position) and the direction (x,y or z).