mimic_collect_forces Subroutine

public subroutine mimic_collect_forces(subsystems)

wrapper to request MM forces

Arguments

TypeIntentOptionalAttributesName
type(subsystem_type), intent(inout), dimension(:):: subsystems

array of subsystems associated with client codes


Contents

Source Code


Source Code

subroutine mimic_collect_forces(subsystems)

    !> array of subsystems associated with client codes
    type(subsystem_type), dimension(:), intent(inout) :: subsystems

    integer :: alloc_stat

    call timer_start("mimic_collect_forces")

    call communicator%gather_forces(subsystems)

    call timer_stop

end subroutine mimic_collect_forces