Skip to content
Snippets Groups Projects
sfx_fc_wrapper.F90 428 B
Newer Older
数学の武士's avatar
数学の武士 committed
module C_FUNC
数学の武士's avatar
数学の武士 committed

#if defined(INCLUDE_CXX)
    contains

    subroutine set_c_struct_sfx_phys_constants_values(constants)
        use sfx_data
        use sfx_phys_const
        implicit none
        type (sfx_phys_constants), intent(inout) :: constants
        constants%Pr_m = Pr_m
        constants%g = g
        constants%nu_air = nu_air
    end subroutine set_c_struct_sfx_phys_constants_values
数学の武士's avatar
数学の武士 committed
    
数学の武士's avatar
数学の武士 committed
#endif
数学の武士's avatar
数学の武士 committed
end module C_FUNC