Create new D4S dispersion model
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(c_ptr), | value | :: | verror | |||
type(c_ptr), | value | :: | vmol |
function new_d4s_model_api(verror, vmol) & & result(vdisp) & & bind(C, name=namespace//"new_d4s_model") !DEC$ ATTRIBUTES DLLEXPORT :: new_d4s_model_api type(c_ptr), value :: verror type(vp_error), pointer :: error type(c_ptr), value :: vmol type(vp_structure), pointer :: mol type(c_ptr) :: vdisp type(vp_model), pointer :: disp type(d4s_model), allocatable :: tmp if (debug) print'("[Info]",1x, a)', "new_d4s_model" vdisp = c_null_ptr if (.not.c_associated(verror)) return call c_f_pointer(verror, error) if (.not.c_associated(vmol)) then call fatal_error(error%ptr, "Molecular structure data is missing") return end if call c_f_pointer(vmol, mol) allocate(tmp) call new_d4s_model(error%ptr, tmp, mol%ptr) if (allocated(error%ptr)) then deallocate(tmp) else allocate(disp) call move_alloc(tmp, disp%ptr) vdisp = c_loc(disp) end if end function new_d4s_model_api