FIXME : Add documentation
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | unit |
subroutine wnml_theta_grid(unit)
use theta_grid_salpha, only: wnml_theta_grid_salpha
use theta_grid_eik, only: wnml_theta_grid_eik
use theta_grid_file, only: wnml_theta_grid_file
use theta_grid_gridgen, only: wnml_theta_grid_gridgen
implicit none
integer, intent(in) :: unit
call theta_grid_config%write(unit)
select case (eqopt_switch)
case (eqopt_salpha)
call wnml_theta_grid_salpha(unit)
case (eqopt_eik)
call wnml_theta_grid_eik(unit)
case (eqopt_file)
call wnml_theta_grid_file(unit)
case (eqopt_file_nc)
call wnml_theta_grid_file(unit)
end select
call wnml_theta_grid_gridgen(unit)
end subroutine wnml_theta_grid