27 TYPE (type_coreprof
),
POINTER :: coreprof_in(:)
28 TYPE (type_coreprof
),
POINTER :: coreprof_out(:)
31 coreprof_out(1)%psi%boundary%value = coreprof_in(1)%psi%boundary%value
32 coreprof_out(1)%psi%boundary%type = coreprof_in(1)%psi%boundary%type
34 coreprof_out(1)%ni%boundary%value = coreprof_in(1)%ni%boundary%value
35 coreprof_out(1)%ni%boundary%type = coreprof_in(1)%ni%boundary%type
37 coreprof_out(1)%ti%boundary%value = coreprof_in(1)%ti%boundary%value
38 coreprof_out(1)%ti%boundary%type = coreprof_in(1)%ti%boundary%type
40 coreprof_out(1)%te%boundary%value = coreprof_in(1)%te%boundary%value
41 coreprof_out(1)%te%boundary%type = coreprof_in(1)%te%boundary%type
43 coreprof_out(1)%vtor%boundary%value = coreprof_in(1)%vtor%boundary%value
44 coreprof_out(1)%vtor%boundary%type = coreprof_in(1)%vtor%boundary%type
69 TYPE (type_codeparam
) :: codeparam_in
70 TYPE (type_codeparam
) :: codeparam_out
72 if(
associated(codeparam_out%codename))
then
74 deallocate(codeparam_out%codename)
76 allocate(codeparam_out%codename(
size(codeparam_in%codename)))
77 codeparam_out%codename = codeparam_in%codename
79 if(
associated(codeparam_out%codeversion))
then
81 deallocate(codeparam_out%codeversion)
83 allocate(codeparam_out%codeversion(
size(codeparam_in%codeversion)))
84 codeparam_out%codeversion = codeparam_in%codeversion
86 if(
associated(codeparam_out%parameters))
then
88 deallocate(codeparam_out%parameters)
90 allocate(codeparam_out%parameters(
size(codeparam_in%parameters)))
91 codeparam_out%parameters = codeparam_in%parameters
93 codeparam_out%output_flag = codeparam_in%output_flag
subroutine copy_codeparam(CODEPARAM_IN, CODEPARAM_OUT)
COPY CODEPARAM.
Module provides routines for copying parts of CPOs (COREPROF and EQUILIBRIUM)
subroutine copy_boundary_cond(COREPROF_IN, COREPROF_OUT)