broadcast_theta_grid_config Subroutine

private subroutine broadcast_theta_grid_config(self)

Uses

Broadcasts all config parameters so object is populated identically on all processors

Type Bound

theta_grid_config_type

Arguments

Type IntentOptional Attributes Name
class(theta_grid_config_type), intent(inout) :: self

Contents


Source Code

  subroutine broadcast_theta_grid_config(self)
    use mp, only: broadcast
    implicit none
    class(theta_grid_config_type), intent(in out) :: self
    call broadcast(self%cvdriftknob)
    call broadcast(self%equilibrium_option)
    call broadcast(self%gb_to_cv)
    call broadcast(self%gbdriftknob)

    call broadcast(self%exist)
  end subroutine broadcast_theta_grid_config