This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/utilities/postProcessing/graphics/newEnsightFoamReader/USERD_structured_data.H
2010-08-25 22:42:57 +01:00

62 lines
771 B
C++

int USERD_get_block_vector_values_by_component
(
int block_number,
int which_vector,
int which_component,
float *vector_array
)
{
return(Z_OK);
}
int USERD_get_block_coords_by_component
(
int block_number,
int which_component,
float *coord_array
)
{
return(Z_OK);
}
int USERD_get_block_iblanking
(
int block_number,
int *iblank_array
)
{
return(Z_OK);
}
int USERD_get_block_scalar_values
(
int block_number,
int which_scalar,
float *scalar_array
)
{
return(Z_OK);
}
int USERD_get_ghosts_in_model_flag( void )
{
return(Z_OK);
}
int USERD_get_ghosts_in_block_flag
(
int block_number
)
{
return(Z_OK);
}
int USERD_get_block_ghost_flags
(
int block_number,
int *ghost_flags
)
{
return(Z_OK);
}