pkReadBaseData

Name

pkReadBaseData -- Reads the basic data in the input file

Description

The subroutine pkReadBaseData reads in the input file the NAMELIST instructions characterizing the basic properties, such as the gas temperature, density or pressure and the electron temperature.

Syntax

pkReadBaseData( UNIT[, IOSTAT] )

NameDescriptionData type and attributes
UNITUnit number for the input fileINTEGER, INTENT(IN)
IOSTATExecution status indicatorINTEGER, OPTIONAL, INTENT(OUT)

Results

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

Comments

The calling program is responsible for opening and closing the input file.

Examples

Example E-13. pkReadBaseData: Reading the basic data in the input file.

  OPEN( UNIT=10, FILE='TestData.txt', ACTION='READ' )
  CALL pkReadBaseData( 10 )