GRIDMAN
grid managment library
Data Types | Variables
gridman Module Reference

Definition of data types, global constants and variables. More...

Data Types

type  gridman_grid
 Data-type which describes a grid as a set of edges, methods in grid.f. More...
 
type  gridman_index
 Data-type which stores indices defined on the grid cells or edges. More...
 
type  gridman_indlist
 Data-type which describes lists of elements with variable number of indices for each element, methods in indlist.f. More...
 

Variables

integer, parameter, public gridman_dp = SELECTED_REAL_KIND(13)
 Kind parameter for real numbers.
 
integer, parameter, public gridman_sp = SELECTED_REAL_KIND(7)
 Kind parameter for integer numbers.
 
integer(gridman_sp), parameter, public gridman_ver =170412
 Index of the current version. More...
 
integer, parameter, public gridman_length =1024
 Length of the description strings.
 
integer, parameter, public gridman_lword =64
 Length of the string COLUMNS in GRIDMAN_INDEX.
 
real(gridman_dp), parameter, public gridman_pi =ATAN(1.)*4.
 PI number.
 
real(gridman_dp), parameter, public gridman_2pi =ATAN(1.)*8.
 2PI number
 
integer, save, public gridman_unit
 Index of the standard output unit. More...
 
logical, save, public gridman_dbg
 Switch for debugging mode. More...
 
real(gridman_dp), save, public gridman_tol
 Tolerance parameter which is used to compare two real numbers. More...
 
logical, save, public gridman_check
 Switch to enforce extra checks of input parameters. More...
 

Detailed Description

Definition of data types, global constants and variables.

Variable Documentation

integer(gridman_sp), parameter, public gridman::gridman_ver =170412

Index of the current version.

Format YYMMDD, E.g. 170412 means Year 2017, April (04), 12th

Definition at line 99 of file gridman.f.

integer, save, public gridman::gridman_unit
logical, save, public gridman::gridman_dbg
real(gridman_dp), save, public gridman::gridman_tol

Tolerance parameter which is used to compare two real numbers.

Default value 1e-6

Definition at line 127 of file gridman.f.

Referenced by gridman_carre2grid(), gridman_grid_compare(), and gridman_point_in_polygon().

logical, save, public gridman::gridman_check

Switch to enforce extra checks of input parameters.

Checks of input objects are enforced if GRIDMAN_CHECK=.TRUE. and skipped otherwise. Default value .FALSE.

Definition at line 133 of file gridman.f.