OpenCMISS-Iron Internal API Documentation
types::equations_set_analytic_type Type Reference

Contains information on the analytic setup for the equations set. More...

Collaboration diagram for types::equations_set_analytic_type:

Public Attributes

type(equations_set_type), pointer equations_set
 A pointer to the equations set. More...
 
integer(intg) analytic_function_type
 The analytic function identifier. More...
 
logical analytic_finished
 Is .TRUE. if the analytic setup for the problem has finished being created, .FALSE. if not. More...
 
logical analytic_field_auto_created
 Is .TRUE. if the analytic field has been auto created, .FALSE. if not. More...
 
type(field_type), pointer analytic_field
 A pointer to the analytic field for the equations set if one is defined. If no source is defined the pointer is NULL. More...
 
real(dp) analytic_time
 The time value to use for analytic evaluations. More...
 
real(dp), dimension(20) analytic_user_params
 A small array that can be used to hold various parameters often required in analytic problems. More...
 

Detailed Description

Contains information on the analytic setup for the equations set.

Definition at line 1923 of file types.f90.

Member Data Documentation

type(field_type), pointer types::equations_set_analytic_type::analytic_field

A pointer to the analytic field for the equations set if one is defined. If no source is defined the pointer is NULL.

Definition at line 1928 of file types.f90.

logical types::equations_set_analytic_type::analytic_field_auto_created

Is .TRUE. if the analytic field has been auto created, .FALSE. if not.

Definition at line 1927 of file types.f90.

logical types::equations_set_analytic_type::analytic_finished

Is .TRUE. if the analytic setup for the problem has finished being created, .FALSE. if not.

Definition at line 1926 of file types.f90.

integer(intg) types::equations_set_analytic_type::analytic_function_type

The analytic function identifier.

Definition at line 1925 of file types.f90.

real(dp) types::equations_set_analytic_type::analytic_time

The time value to use for analytic evaluations.

Definition at line 1929 of file types.f90.

real(dp), dimension(20) types::equations_set_analytic_type::analytic_user_params

A small array that can be used to hold various parameters often required in analytic problems.

Todo:
should this be allocated?

Definition at line 1930 of file types.f90.

type(equations_set_type), pointer types::equations_set_analytic_type::equations_set

A pointer to the equations set.

Definition at line 1924 of file types.f90.