@@ -232,7 +232,7 @@ void FlatSourceDomain::set_flux_to_flux_plus_source(
232232 source_regions_.scalar_flux_td_new (sr, g) /= (sigma_t_td * volume);
233233 source_regions_.scalar_flux_td_new (sr, g) +=
234234 source_regions_.source_td (sr, g);
235- if (RandomRay::time_method_ == RandomRayTimeMethod::PROPOGATION ) {
235+ if (RandomRay::time_method_ == RandomRayTimeMethod::PROPAGATION ) {
236236 // TODO: may need to adjust sigma t division here
237237 double inverse_vbar =
238238 inverse_vbar_[source_regions_.material (sr) * negroups_ + g];
@@ -1815,7 +1815,7 @@ SourceRegionHandle FlatSourceDomain::get_subdivided_source_region_handle(
18151815 update_single_neutron_source (handle);
18161816 if (settings::kinetic_simulation && !settings::is_initial_condition) {
18171817 update_single_neutron_source_td (handle);
1818- if (RandomRay::time_method_ == RandomRayTimeMethod::PROPOGATION ) {
1818+ if (RandomRay::time_method_ == RandomRayTimeMethod::PROPAGATION ) {
18191819 compute_single_neutron_source_time_derivative (handle);
18201820 compute_single_scalar_flux_time_derivative_2 (handle);
18211821 }
@@ -2091,7 +2091,7 @@ void FlatSourceDomain::update_all_neutron_sources_td()
20912091 for (int64_t sr = 0 ; sr < n_source_regions (); sr++) {
20922092 SourceRegionHandle srh = source_regions_.get_source_region_handle (sr);
20932093 update_single_neutron_source_td (srh);
2094- if (RandomRay::time_method_ == RandomRayTimeMethod::PROPOGATION ) {
2094+ if (RandomRay::time_method_ == RandomRayTimeMethod::PROPAGATION ) {
20952095 compute_single_neutron_source_time_derivative (srh);
20962096 compute_single_scalar_flux_time_derivative_2 (srh);
20972097 }
@@ -2228,7 +2228,7 @@ void FlatSourceDomain::accumulate_iteration_quantities()
22282228 for (int g = 0 ; g < negroups_; g++) {
22292229 source_regions_.scalar_flux_td_final (sr, g) +=
22302230 source_regions_.scalar_flux_td_new (sr, g);
2231- if (RandomRay::time_method_ == RandomRayTimeMethod::PROPOGATION ) {
2231+ if (RandomRay::time_method_ == RandomRayTimeMethod::PROPAGATION ) {
22322232 if (settings::is_initial_condition)
22332233 source_regions_.source_final (sr, g) +=
22342234 source_regions_.source (sr, g);
@@ -2260,7 +2260,7 @@ void FlatSourceDomain::normalize_final_quantities()
22602260 if (settings::kinetic_simulation)
22612261 source_regions_.scalar_flux_td_final (sr, g) *=
22622262 source_normalization_factor;
2263- if (RandomRay::time_method_ == RandomRayTimeMethod::PROPOGATION ) {
2263+ if (RandomRay::time_method_ == RandomRayTimeMethod::PROPAGATION ) {
22642264 source_regions_.source_td_final (sr, g) *= normalization_factor;
22652265 }
22662266 }
@@ -2308,12 +2308,12 @@ void FlatSourceDomain::store_time_step_quantities(bool increment_not_initialize)
23082308 for (int64_t sr = 0 ; sr < n_source_regions (); sr++) {
23092309 for (int g = 0 ; g < negroups_; g++) {
23102310 int j = 0 ;
2311- if (RandomRay::time_method_ == RandomRayTimeMethod::PROPOGATION )
2311+ if (RandomRay::time_method_ == RandomRayTimeMethod::PROPAGATION )
23122312 j = 1 ;
23132313 add_value_to_bd_vector (source_regions_.scalar_flux_bd (sr, g),
23142314 source_regions_.scalar_flux_td_final (sr, g), increment_not_initialize,
23152315 RandomRay::bd_order_ + j);
2316- if (RandomRay::time_method_ == RandomRayTimeMethod::PROPOGATION ) {
2316+ if (RandomRay::time_method_ == RandomRayTimeMethod::PROPAGATION ) {
23172317 // Multiply out sigma_t to store the base source
23182318 double sigma_t ;
23192319 if (settings::is_initial_condition) {
@@ -2344,7 +2344,7 @@ void FlatSourceDomain::compute_rhs_bd_quantities()
23442344 rhs_backwards_difference (source_regions_.scalar_flux_bd (sr, g),
23452345 RandomRay::bd_order_, settings::dt);
23462346
2347- if (RandomRay::time_method_ == RandomRayTimeMethod::PROPOGATION ) {
2347+ if (RandomRay::time_method_ == RandomRayTimeMethod::PROPAGATION ) {
23482348 source_regions_.source_rhs_bd (sr, g) = rhs_backwards_difference (
23492349 source_regions_.source_bd (sr, g), RandomRay::bd_order_, settings::dt);
23502350
0 commit comments