Skip to content

Commit be0aeab

Browse files
committed
Remove unused core parameters
1 parent b6ba948 commit be0aeab

File tree

3 files changed

+0
-84
lines changed

3 files changed

+0
-84
lines changed

armi/reactor/reactorParameters.py

Lines changed: 0 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -521,78 +521,6 @@ def defineCoreParameters():
521521
),
522522
)
523523

524-
with pDefs.createBuilder(
525-
default=0.0,
526-
location=ParamLocation.AVERAGE,
527-
categories=["reactivity coefficients"],
528-
) as pb:
529-
530-
pb.defParam(
531-
"axial",
532-
units=f"{units.CENTS}/{units.DEGK}",
533-
description="Axial expansion coefficient",
534-
)
535-
536-
pb.defParam(
537-
"doppler",
538-
units=f"{units.CENTS}/{units.DEGK}",
539-
description="Doppler coefficient",
540-
)
541-
542-
pb.defParam(
543-
"dopplerConst",
544-
units=f"{units.CENTS}*{units.DEGK}^(n-1)",
545-
description="Doppler constant",
546-
)
547-
548-
pb.defParam(
549-
"fuelDensity",
550-
units=f"{units.CENTS}/{units.DEGK}",
551-
description="Fuel temperature coefficient",
552-
)
553-
554-
pb.defParam(
555-
"coolantDensity",
556-
units=f"{units.CENTS}/{units.DEGK}",
557-
description="Coolant temperature coefficient",
558-
)
559-
560-
pb.defParam(
561-
"totalCoolantDensity",
562-
units=f"{units.CENTS}/{units.DEGK}",
563-
description="Coolant temperature coefficient weighted to include bond and interstitial effects",
564-
)
565-
566-
pb.defParam(
567-
"Voideddoppler",
568-
units=f"{units.CENTS}/{units.DEGK}",
569-
description="Voided Doppler coefficient",
570-
)
571-
572-
pb.defParam(
573-
"VoideddopplerConst",
574-
units=f"{units.CENTS}*{units.DEGK}^(n-1)",
575-
description="Voided Doppler constant",
576-
)
577-
578-
pb.defParam(
579-
"voidWorth", units=f"{units.DOLLARS}", description="Coolant void worth"
580-
)
581-
582-
pb.defParam("voidedKeff", units=units.UNITLESS, description="Voided keff")
583-
584-
pb.defParam(
585-
"radialHT9",
586-
units=f"{units.CENTS}/{units.DEGK}",
587-
description="Radial expansion coefficient when driven by thermal expansion of HT9.",
588-
)
589-
590-
pb.defParam(
591-
"radialSS316",
592-
units=f"{units.CENTS}/{units.DEGK}",
593-
description="Radial expansion coefficient when driven by thermal expansion of SS316.",
594-
)
595-
596524
with pDefs.createBuilder(
597525
default=0.0,
598526
location=ParamLocation.AVERAGE,
@@ -644,12 +572,6 @@ def defineCoreParameters():
644572
description="Fuel Axial Expansion Coefficient",
645573
)
646574

647-
pb.defParam(
648-
"rxFuelAxialExpansionCoeffPerPercent",
649-
units="dk/kk'-%",
650-
description="Fuel Axial Expansion Coefficient",
651-
)
652-
653575
pb.defParam(
654576
"rxGridPlateRadialExpansionCoeffPerTemp",
655577
units=f"{units.REACTIVITY}/{units.DEGK}",

armi/utils/reportPlotting.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,8 +451,6 @@ def _getNeutronicVals(r):
451451
("Rx. Swing", r.core.p.rxSwing),
452452
("Fast Flux Fr.", r.core.p.fastFluxFrAvg),
453453
("Leakage", r.core.p.leakageFracTotal),
454-
("Void worth", r.core.p.voidWorth),
455-
("Doppler", r.core.p.doppler),
456454
("Beta", r.core.p.beta),
457455
("Peak flux", r.core.p.maxFlux),
458456
]

armi/utils/tests/test_reportPlotting.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,7 @@ def tearDown(self):
4444

4545
def test_radar(self):
4646
"""Test execution of radar plot. Note this has no asserts and is therefore a smoke test."""
47-
self.r.core.p.doppler = 0.5
48-
self.r.core.p.voidWorth = 0.5
4947
r2 = copy.deepcopy(self.r)
50-
r2.core.p.voidWorth = 1.0
51-
r2.core.p.doppler = 1.0
5248
plotCoreOverviewRadar([self.r, r2], ["Label1", "Label2"])
5349

5450
def test_createPlotMetaData(self):

0 commit comments

Comments
 (0)