-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add test5 #34
Open
bam241
wants to merge
2
commits into
cyclus:master
Choose a base branch
from
bam241:Canonical_test5
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add test5 #34
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
Tests 5 : 10 reactors initialy and 1 deployed every 10 years over 120 years | ||
============================================================= | ||
|
||
120 year simulation, 10 reactors, fixed fuel recipe, 120 years operation to be defined: reactor power, fuel burnup and associated recipes, (re)fueling strategy | ||
|
||
Definition | ||
---------------- | ||
120 year simulation, ten reactors, fixed fuel recipe, a new reactor starts every 10 years and continues throughout simulation | ||
|
||
Reactor : | ||
* Type: LWR, | ||
* **Fuel**: UOX 3.25%w enriched uranium, | ||
* **Mass**: 82 tons (Oxyde Metal), | ||
* **Thermal Power**: 2875e6 W -- **Efficiency**: 34%, | ||
* **Discharge burn-up** : 43.03 GWd/tonne -- Full Cycle length 3y, | ||
* **Capacity factor**: 1, | ||
* **Suggested recipes**: | ||
* **Fresh UOX** : | ||
* <sup>235</sup>U : 3.25%w | ||
* <sup>238</sup>U : 96.75%w | ||
* <sup>16</sup>O : 13.44%w \ | ||
* the %w are normalize to the quantity of uranium... but because the reactor fuel mass is given in oxyde metal, one provides also the corresponding oxygen quantity | ||
|
||
* **Used UOX** @43.03 GWd/tonne (atomic): | ||
* <sup>234</sup>U : 0.00026% | ||
* <sup>235</sup>U : 0.52485% | ||
* <sup>236</sup>U : 0.41405% | ||
* <sup>238</sup>U : 89.33000% | ||
* <sup>238</sup>Pu : 0.02294% | ||
* <sup>239</sup>Pu : 0.54288% | ||
* <sup>240</sup>Pu : 0.24718% | ||
* <sup>241</sup>Pu : 0.15922% | ||
* <sup>242</sup>Pu : 0.08248% | ||
* <sup>241</sup>Am : 0.00399% | ||
* <sup>242</sup>Am* : 0.00008% | ||
* <sup>243</sup>Am : 0.01890% | ||
* <sup>242</sup>Cm : 0.00208% | ||
* <sup>243</sup>Cm : 0.00005% | ||
* <sup>244</sup>Cm : 0.00771% | ||
* <sup>245</sup>Cm : 0.00049% | ||
* <sup>237</sup>Np : 0.05255% | ||
* <sup>16</sup>O : 191.34628% | ||
|
||
Output | ||
---------- | ||
TBD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
{ | ||
"materials": { | ||
"pwr_uox": {"attributes": {"recipe": true}, | ||
"constraints": [ | ||
["U235", 3.25], | ||
["U238", 96.75], | ||
["O16", 13.44]], | ||
"metadata": {} | ||
}, | ||
"spent_pwr_uox": | ||
{"attributes": {"recipe": false}, | ||
"constraints": [], | ||
"metadata": { | ||
"suggestedComposition": [ | ||
["U234", 0.00026], | ||
["U235", 0.52485], | ||
["U236", 0.41405], | ||
["U238", 89.33000], | ||
["PU238", 0.02294], | ||
["PU239", 0.54288], | ||
["PU240", 0.24718], | ||
["PU241", 0.15922], | ||
["PU242", 0.08248], | ||
["AM241", 0.00339], | ||
["AM242m", 0.00008], | ||
["AM243", 0.01890], | ||
["CM242", 0.00208], | ||
["CM243", 0.00005], | ||
["CM244", 0.00771], | ||
["CM245", 0.00049], | ||
["NP237", 0.05255], | ||
["O16", 191.34628]] | ||
} | ||
} | ||
}, | ||
|
||
"facilities": { | ||
"lwr_reactor_1": { | ||
"metadata": {"type": "reactor"}, | ||
"attributes": { | ||
"thermalPower": ["float", "GWt"], | ||
"efficiency": ["float", "percent"], | ||
"cycleLength": ["int", "EFPD"], | ||
"capacityFactor": ["float", "percent"], | ||
"lifetime": ["int", "year"], | ||
"fuels": ["nea_pwr_uox"], | ||
"batches": ["int", "", ["pwr_uox"]], | ||
"coreLoading": ["float", "tHM", ["pwr_uox"]], | ||
"burnup": ["float", "GWd/tHM", ["pwr_uox"]], | ||
"storageTime": ["int", "year", ["pwr_uox"]], | ||
"coolingTime": ["int", "year", ["pwr_uox"]] | ||
}, | ||
"constraints": [ | ||
["thermalPower", 2.8387], | ||
["efficiency", 34.0], | ||
["cycleLength", 365.25], | ||
["capacityFactor", 100], | ||
["lifetime", 120], | ||
["batches", 3, "pwr_uox"], | ||
["coreLoading", 82, "pwr_uox"], | ||
["burnup", 43.03, "pwr_uox"], | ||
["storageTime", 0, "pwr_uox"], | ||
["coolingTime", 0, "pwr_uox"]], | ||
"inputs": ["pwr_uox"], | ||
"outputs": ["spent_pwr_uox"] | ||
}, | ||
|
||
"lwr_reactor": { | ||
"metadata": {"type": "reactor"}, | ||
"attributes": { | ||
"thermalPower": ["float", "GWt"], | ||
"efficiency": ["float", "percent"], | ||
"cycleLength": ["int", "EFPD"], | ||
"capacityFactor": ["float", "percent"], | ||
"lifetime": ["int", "year"], | ||
"fuels": ["nea_pwr_uox"], | ||
"batches": ["int", "", ["pwr_uox"]], | ||
"coreLoading": ["float", "tHM", ["pwr_uox"]], | ||
"burnup": ["float", "GWd/tHM", ["pwr_uox"]], | ||
"storageTime": ["int", "year", ["pwr_uox"]], | ||
"coolingTime": ["int", "year", ["pwr_uox"]] | ||
}, | ||
"constraints": [ | ||
["thermalPower", 2.8387], | ||
["efficiency", 34.0], | ||
["cycleLength", 365.25], | ||
["capacityFactor", 100], | ||
["lifetime", 120], | ||
["batches", 3, "pwr_uox"], | ||
["coreLoading", 82, "pwr_uox"], | ||
["burnup", 43.03, "pwr_uox"], | ||
["storageTime", 0, "pwr_uox"], | ||
["coolingTime", 0, "pwr_uox"]], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where is the structure for these constraints defined? |
||
"inputs": ["pwr_uox"], | ||
"outputs": ["spent_pwr_uox"] | ||
}, | ||
|
||
"repository": { | ||
"metadata": { | ||
"type":"repository" | ||
}, | ||
"attributes": {}, | ||
"constraints": [], | ||
"inputs": ["spent_pwr_uox"] | ||
} | ||
}, | ||
|
||
"fuelCycle": { | ||
"attributes": { | ||
"grid": "year", | ||
"initialConditions": { | ||
"lwr_reactor_power": ["GWe", ["lwr_reactor"]], | ||
"repository": 1 | ||
}, | ||
"demands": {} | ||
}, | ||
|
||
"constraints": { | ||
"grid": [0, 120], | ||
"demands": {"lwr_reactor_power": { | ||
"grid": [0, 120], | ||
"growth": { | ||
"type": "linear", | ||
"period1": { | ||
"startTime": 0, | ||
"startValue": 1, | ||
"slope": 0.1 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is camelCase being mixed with
lower_case_with_underscores
as the keys?