Skip to content

Commit

Permalink
Removing unused Parameters (#997)
Browse files Browse the repository at this point in the history
Removing the parameters:

* assemPeakStd
* cladDensity
* cladWorthDollarsPerKg
* coolantWorthDollarsPerKg
* corePow
* coupledIteration
* detailedDpaNewCycle
* detailedDpaPeakNewCycle
* directPertKeff
* dpaRx
* fuelRadialDisplacement
* fuelWorthDollarsPerKg
* hydDiam
* innerMatrixIndex
* regName
* structureDensity
* structureWorth
* structureWorthDollarsPerKg
  • Loading branch information
john-science committed Nov 29, 2022
1 parent 1a6cb85 commit 86f3716
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 92 deletions.
6 changes: 0 additions & 6 deletions armi/physics/fuelPerformance/parameters.py
Expand Up @@ -94,10 +94,4 @@ def _getFuelPerformanceBlockParams():
default=0.0,
)

pb.defParam(
"fuelRadialDisplacement",
units="cm",
description="Radial fuel displacement from irradiation",
)

return pDefs
14 changes: 0 additions & 14 deletions armi/physics/neutronics/parameters.py
Expand Up @@ -634,20 +634,6 @@ def linPowByPinGamma(self, value):
pb.defParam("powerNeutron", units="W", description="Total neutron power")

with pDefs.createBuilder(default=0.0) as pb:
pb.defParam(
"detailedDpaNewCycle",
units="dpa",
description="The total DPA accumulated in all burn steps of one cycle",
location=ParamLocation.AVERAGE,
)

pb.defParam(
"detailedDpaPeakNewCycle",
units="dpa",
description="The total peak DPA accumulated in all burn steps of one cycle",
location=ParamLocation.AVERAGE,
)

pb.defParam(
"detailedDpaThisCycle",
units="dpa",
Expand Down
48 changes: 0 additions & 48 deletions armi/reactor/blockParameters.py
Expand Up @@ -302,10 +302,6 @@ def buGroupNum(self, buGroupNum): # pylint: disable=method-hidden
"powerRx", units="W/cm$^3$", description="?", location=ParamLocation.AVERAGE
)

pb.defParam(
"dpaRx", units="dpa/s", description="?", location=ParamLocation.AVERAGE
)

pb.defParam(
"heliumInB4C",
units="He/s/cm$^3$",
Expand Down Expand Up @@ -337,8 +333,6 @@ def buGroupNum(self, buGroupNum): # pylint: disable=method-hidden

pb.defParam("basePBu", units="?", description="?", saveToDB=False)

pb.defParam("hydDiam", units="?", description="?", saveToDB=False)

pb.defParam(
"nHMAtBOL",
units="atoms/bn-cm.",
Expand Down Expand Up @@ -439,14 +433,6 @@ def xsTypeNum(self, value): # pylint: disable=method-hidden
saveToDB=True,
)

pb.defParam(
"regName",
units="?",
description="Set by Assembly in writeNIP30 once the region has been placed",
default=False,
saveToDB=False,
)

with pDefs.createBuilder(
default=0.0,
location=ParamLocation.AVERAGE,
Expand All @@ -471,12 +457,6 @@ def xsTypeNum(self, value): # pylint: disable=method-hidden
description="Reactivity worth of fuel material per unit mass",
)

pb.defParam(
"fuelWorthDollarsPerKg",
units="$/kg",
description="Reactivity worth of fuel material per unit mass",
)

pb.defParam("fuelWorthPT", units="pcm/%/cm^3", description="Fuel reactivity")

pb.defParam(
Expand Down Expand Up @@ -507,36 +487,12 @@ def xsTypeNum(self, value): # pylint: disable=method-hidden
description="Reactivity worth of coolant material per unit mass",
)

pb.defParam(
"coolantWorthDollarsPerKg",
units="$/kg",
description="Reactivity worth of coolant material per unit mass",
)

pb.defParam(
"cladWorth",
units="dk/kk'-kg",
description="Reactivity worth of clad material per unit mass",
)

pb.defParam(
"cladWorthDollarsPerKg",
units="$/kg",
description="Reactivity worth of clad material per unit mass",
)

pb.defParam(
"structureWorth",
units="dk/kk'-kg",
description="Reactivity worth of structure material per unit mass",
)

pb.defParam(
"structureWorthDollarsPerKg",
units="$/kg",
description="Reactivity worth of structure material (non-clad and non-wire wrap material) per unit mass",
)

pb.defParam(
"rxAxialCentsPerK",
units="cents/K",
Expand Down Expand Up @@ -646,10 +602,6 @@ def xsTypeNum(self, value): # pylint: disable=method-hidden
description="Voided Doppler power reactivity coefficient",
)

pb.defParam(
"assemPeakStd", units="pcm/%/cm^3", description="Spectral reactivity"
)

with pDefs.createBuilder(
default=0.0,
location=ParamLocation.AVERAGE,
Expand Down
24 changes: 0 additions & 24 deletions armi/reactor/reactorParameters.py
Expand Up @@ -216,12 +216,6 @@ def detailedNucKeys(self, value):
"critSearchSlope", units=None, description="Critical keff search slope"
)

pb.defParam(
"directPertKeff",
units=None,
description="K-eff is computed for the perturbed case with a direct calculation",
)

pb.defParam(
"doublingTime",
units="EFPY",
Expand All @@ -234,12 +228,6 @@ def detailedNucKeys(self, value):
"heavyMetalMass", units="g", description="Heavy Metal mass of the reactor"
)

pb.defParam(
"innerMatrixIndex",
units=None,
description="The item index of the inner matrix in an optimization case",
)

pb.defParam(
"keffUnc",
units=None,
Expand Down Expand Up @@ -504,16 +492,6 @@ def detailedNucKeys(self, value):
description="Coolant temperature coefficient weighted to include bond and interstitial effects",
)

pb.defParam(
"cladDensity", units="cents/K", description="Clad temperature coefficient"
)

pb.defParam(
"structureDensity",
units="cents/K",
description="Structure temperature coefficient",
)

pb.defParam(
"Voideddoppler", units="cents/K", description="Voided Doppler coefficient"
)
Expand Down Expand Up @@ -770,8 +748,6 @@ def detailedNucKeys(self, value):
default=0.0,
)

pb.defParam("corePow", units="?", description="?")

pb.defParam("coupledIteration", units="?", description="?", default=0)

pb.defParam("fisFrac", units="?", description="?")
Expand Down

0 comments on commit 86f3716

Please sign in to comment.