@@ -457,7 +457,7 @@ def _solve_steady_forward(self, scenario, bodies):
457
457
self .solvers .flow .initialize (scenario , bodies )
458
458
for step in range (1 , scenario .steps + 1 ):
459
459
self .solvers .flow .iterate (scenario , bodies , step = step )
460
- self .solvers .flow .post (scenario , bodies )
460
+ self .solvers .flow .post (scenario , bodies , coupled_residuals = False )
461
461
462
462
# get functions to store the function values into the model
463
463
self .solvers .flow .get_functions (scenario , bodies )
@@ -472,7 +472,7 @@ def _solve_unsteady_forward(self, scenario, bodies):
472
472
self .solvers .flow .initialize (scenario , bodies )
473
473
for step in range (1 , scenario .steps + 1 ):
474
474
self .solvers .flow .iterate (scenario , bodies , step = step )
475
- self .solvers .flow .post (scenario , bodies )
475
+ self .solvers .flow .post (scenario , bodies , coupled_residuals = False )
476
476
477
477
# get functions to store the function values into the model
478
478
self .solvers .flow .get_functions (scenario , bodies )
@@ -498,7 +498,7 @@ def _solve_steady_adjoint(self, scenario, bodies):
498
498
for step in range (1 , steps + 2 ):
499
499
self .solvers .flow .iterate_adjoint (scenario , bodies , step = step )
500
500
self ._extract_coordinate_derivatives (scenario , bodies , step = 0 )
501
- self .solvers .flow .post_adjoint (scenario , bodies )
501
+ self .solvers .flow .post_adjoint (scenario , bodies , coupled_residuals = False )
502
502
503
503
# call get function gradients to store the gradients w.r.t. aero DVs from FUN3D
504
504
self .solvers .flow .get_function_gradients (scenario , bodies )
@@ -520,7 +520,7 @@ def _solve_unsteady_adjoint(self, scenario, bodies):
520
520
step = scenario .steps + 1 - rstep
521
521
self .solvers .flow .iterate_adjoint (scenario , bodies , step = step )
522
522
self ._extract_coordinate_derivatives (scenario , bodies , step = step )
523
- self .solvers .flow .post_adjoint (scenario , bodies )
523
+ self .solvers .flow .post_adjoint (scenario , bodies , coupled_residuals = False )
524
524
525
525
# call get function gradients to store the gradients w.r.t. aero DVs from FUN3D
526
526
self .solvers .flow .get_function_gradients (scenario , bodies )
0 commit comments