Fix input variable for inboard blanket type in PROCESS input file#4300
Merged
Conversation
je-cook
approved these changes
Jun 8, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR corrects the input-parser module mapping for i_blkt_inboard so that values provided in IN.DAT are applied to the build data structure (where i_blkt_inboard is actually defined/used), rather than being routed to fwbs.
Changes:
- Update
process/core/input.pysoi_blkt_inboardis parsed into thebuildmodule instead offwbs.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
956
to
959
| "i_bldgs_size": InputVariable("buildings", int, choices=[0, 1]), | ||
| "i_bldgs_v": InputVariable("buildings", int, choices=[0, 1]), | ||
| "i_blkt_inboard": InputVariable("fwbs", int, choices=[0, 1]), | ||
| "i_blkt_inboard": InputVariable("build", int, choices=[0, 1]), | ||
| "i_bootstrap_current": InputVariable("physics", int, range=(0, 13)), |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4300 +/- ##
==========================================
+ Coverage 48.69% 48.76% +0.06%
==========================================
Files 151 151
Lines 29290 29328 +38
==========================================
+ Hits 14263 14301 +38
Misses 15027 15027 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Checklist
I confirm that I have completed the following checks: