pkGetValue

Name

pkGetValue -- Gets the values of global properties

Description

The subroutine pkGetValue returns the gas temperature, electron temperature and total gas density.

Syntax

pkGetValue( [GasTemp][[,] eTemp][[,] GasN][[,] STAT] )

NameDescriptionData type and attributes
GasTempThe gas temperatureREAL(double), OPTIONAL, INTENT(OUT)
eTempThe electron temperatureREAL(double), OPTIONAL, INTENT(OUT)
GasNThe total gas densityREAL(double), OPTIONAL, INTENT(OUT)
STATExecution status indicatorINTEGER, OPTIONAL, INTENT(OUT)

Results

Values are returned in the units used in the input file for these properties. If for a given property no units were explicitly indicated, the value is returned in S.I. units.

STAT = 0: no errors; STAT = n: error number.

Examples

Example E-11. pkGetValue: Inquiring about the gas temperature and density.

  REAL(double) :: gasT, gasDens
  ...
  CALL pkGetValue( gasT, GasN=gasDens )