Skip to content

Commit c001189

Browse files
Remove saveLambVector keyword from mainKeywords
1 parent b8831e4 commit c001189

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

Solver/src/NavierStokesSolver/main.f90

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -268,11 +268,6 @@ SUBROUTINE CheckInputIntegrity( controlVariables, success )
268268
call controlVariables % addValueForKey(".false.",saveGradientsToSolutionKey)
269269
end if
270270

271-
obj => controlVariables % objectForKey(saveLambVectorToSolutionKey)
272-
if ( .not. associated(obj) ) then
273-
call controlVariables % addValueForKey(".false.",saveLambVectorToSolutionKey)
274-
end if
275-
276271
obj => controlVariables % objectForKey(saveSensorToSolutionKey)
277272
if ( .not. associated(obj) ) then
278273
call controlVariables % addValueForKey(".false.",saveSensorToSolutionKey)

Solver/src/libs/foundation/Setup.f90

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@ Module mainKeywordsModule
1818
CHARACTER(LEN=KEYWORD_LENGTH), PARAMETER :: outputIntervalKey = "output interval"
1919
CHARACTER(LEN=KEYWORD_LENGTH), PARAMETER :: convergenceToleranceKey = "convergence tolerance"
2020
CHARACTER(LEN=KEYWORD_LENGTH), PARAMETER :: numberOfBoundariesKey = "number of boundaries"
21-
CHARACTER(LEN=KEYWORD_LENGTH), DIMENSION(13) :: mainKeywords = [ meshFileNameKey, &
21+
CHARACTER(LEN=KEYWORD_LENGTH), DIMENSION(12) :: mainKeywords = [ meshFileNameKey, &
2222
inviscidDiscretizationKey, &
2323
splitFormkey, &
2424
discretizationNodesKey, &
2525
saveGradientsToSolutionKey, &
26-
saveLambVectorToSolutionKey,&
2726
saveSensorToSolutionKey, &
2827
restartKey, &
2928
restartFileNameKey, &

0 commit comments

Comments
 (0)