subroutine to add the variables from the input lua script to the varsys
If not satisfied then it is not possible to append current variable to varSys
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(tem_variable_type), | intent(in) | :: | operVar | variables defined in the lua file |
||
| type(tem_varSys_type), | intent(inout) | :: | varSys | global variable system to which operVar to be appended |
||
| integer, | intent(out), | optional | :: | pos | Position of the variable in the system. |
|
| type(tem_varSys_solverData_evalElem_type), | intent(in), | optional | :: | solverData_evalElem | A setter routine that allows the caller to define routine for the construction of an element representation. |
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer, | private | :: | addedPos | ||||
| integer, | private | :: | nComps | ||||
| integer, | private | :: | nInputs | ||||
| integer, | private, | allocatable | :: | inPos(:) | |||
| logical, | private | :: | wasAdded | ||||
| character(len=labelLen), | private, | allocatable | :: | input_varname(:) | |||
| integer, | private, | allocatable | :: | input_varIndex(:) | |||
| logical, | private | :: | isSatisfied | ||||
| procedure(tem_varSys_proc_point), | private, | pointer | :: | get_point | => | NULL() | |
| procedure(tem_varSys_proc_element), | private, | pointer | :: | get_element | => | NULL() | |
| procedure(tem_varSys_proc_setParams), | private, | pointer | :: | set_params | => | NULL() | |
| procedure(tem_varSys_proc_getParams), | private, | pointer | :: | get_params | => | NULL() | |
| procedure(tem_varSys_proc_setupIndices), | private, | pointer | :: | setup_indices | => | NULL() | |
| procedure(tem_varSys_proc_getValOfIndex), | private, | pointer | :: | get_valOfIndex | => | NULL() | |
| type(c_ptr), | private | :: | method_data | ||||
| type(tem_varSys_op_data_type), | private, | pointer | :: | opData |