devtyp Subroutine

private subroutine devtyp()

Set icase description based on device type

Arguments

None

Contents

Source Code


Source Code

  subroutine devtyp
    !! Set icase description based on device type
    use global_variables, only: icase
    use ife_variables, only: ife
    use stellarator_variables, only: istell
    implicit none

    if (ife == 1) then
        icase = 'Inertial Fusion model'
    else if (istell /= 0) then
        icase = 'Stellarator model'
    end if
  end subroutine devtyp