Skip to content

Commit

Permalink
Merge pull request #7124 from ORNL-AMO/6114-add-centf-autoshutoff
Browse files Browse the repository at this point in the history
6114 - CA team feedback
  • Loading branch information
nbintertech authored Nov 13, 2024
2 parents 5dec98d + d20698a commit 6f7bf2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,10 @@ export class InventoryService {
}

checkDisplayAutomaticShutdown(controlType: number): boolean {
return (controlType != undefined && controlType != 5 && controlType != 7 && controlType != 9 && controlType != 1);
if (controlType !== undefined) {
return [2, 3, 4, 6, 7, 8, 9, 10, 11].includes(controlType);
}
return false;
}

setCompressorControlValidators(form: UntypedFormGroup): UntypedFormGroup {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ <h3>System Information</h3>
<option [ngValue]="'cascading'">Cascading Pressure</option>
<option [ngValue]="'targetPressureSequencer'">Target Pressure Sequencer</option>
<option [ngValue]="'isentropicEfficiency'">Isentropic Efficiency</option>
<option [ngValue]="'loadSharing'">Centrifugal Load Sharing</option>
<option [ngValue]="'loadSharing'">Equal Capacity Ratio Load Sharing</option>
<option [ngValue]="'baseTrim'">Base/Trim</option>
</select>
</div>
Expand Down

0 comments on commit 6f7bf2f

Please sign in to comment.