ETS-Core  version:0.0.4-46-ge2d8
Core actors for the ETS-6
 All Classes Files Functions Variables Pages
changeocc.f90
Go to the documentation of this file.
1 SUBROUTINE changeocc(CP_IN, CP_OUT, &
2  ct_in, ct_out, &
3  cs_in, cs_out, &
4  tsn_in, tsn_out,&
5  eq_in, eq_out)
6 
7  USE ids_schemas
8  USE ids_routines
9 
10  IMPLICIT NONE
11 
12  TYPE (ids_core_profiles) :: cp_in, cp_out
13  TYPE (ids_core_transport) :: ct_in, ct_out
14  TYPE (ids_core_sources) :: cs_in, cs_out
15  TYPE (ids_transport_solver_numerics) :: tsn_in, tsn_out
16  TYPE (ids_equilibrium) :: eq_in, eq_out
17 
18 
19  CALL ids_copy(cp_in, cp_out)
20  CALL ids_copy(ct_in, ct_out)
21  CALL ids_copy(cs_in, cs_out)
22  CALL ids_copy(tsn_in, tsn_out)
23  CALL ids_copy(eq_in, eq_out)
24 
25 
26 
27  RETURN
28 
29 END SUBROUTINE changeocc
30 
31 
32 !-------------------------------------------------------!
33 !-------------------------------------------------------!
subroutine changeocc(CP_IN, CP_OUT, CT_IN, CT_OUT, CS_IN, CS_OUT, TSN_IN, TSN_OUT, EQ_IN, EQ_OUT)
Definition: changeocc.f90:1