ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_geom_from_cpo.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
3 SUBROUTINE geom_from_cpo(EQUILIBRIUM, EQUILIBRIUM_OUT,user_out_outputFlag,user_out_diagnosticInfo)!, &
4 ! NDIM1, NDIM2 )
5 
6 !--------------------------------------------------------
7 ! This is FC2K wrapper for GEOMETRY_FROM_CPO !
8 !--------------------------------------------------------
9 
10  USE itm_types
11  USE euitm_schemas
13 
14  IMPLICIT NONE
15 
16  TYPE (type_equilibrium), POINTER :: equilibrium(:)
17  TYPE (type_equilibrium), POINTER :: equilibrium_out(:)
18 
19  INTEGER :: ndim1
20  INTEGER :: ndim2
21 
22 integer :: ierr_in
23 character*255 :: err_mes_in
24 !---- Diagnostic info ----
25 integer, intent(out) :: user_out_outputflag
26 character(len=:), pointer, intent(out) :: user_out_diagnosticinfo
27 integer nchd
28 
29 user_out_outputflag=0
30 nullify(user_out_diagnosticinfo)
31 
32  ! temporary
33  ndim1 = 101
34  ndim2 = 101
35 
36  CALL geometry_from_cpo(equilibrium, equilibrium_out, &
37  ndim1, ndim2,ierr_in,err_mes_in)
38 
39  if (ierr_in.lt.0) then
40  user_out_outputflag=-1
41  nchd=len_trim(err_mes_in)
42  allocate(character(nchd) :: user_out_diagnosticinfo)
43  user_out_diagnosticinfo=err_mes_in(1:nchd)
44  end if
45  RETURN
46 
47 
48 END SUBROUTINE geom_from_cpo
49 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
50 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
subroutine geometry_from_cpo(EQUILIBRIUM,EQUILIBRIUM_OUT,
subroutine geom_from_cpo(EQUILIBRIUM, EQUILIBRIUM_OUT, user_out_outputFlag, user_out_diagnosticInfo)