Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 2 additions & 50 deletions process/models/stellarator/stellarator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1551,60 +1551,12 @@ def st_fwbs(self, output: bool):
"(tritprate)",
self.data.fwbs.tritprate,
)
po.ovarre(
self.outfile,
"Nuclear heating on i/b coil (MW/m3)",
"(pnuctfi)",
self.data.fwbs.pnuctfi,
)
po.ovarre(
self.outfile,
"Nuclear heating on o/b coil (MW/m3)",
"(pnuctfo)",
self.data.fwbs.pnuctfo,
)
po.ovarre(
self.outfile,
"Total nuclear heating on coil (MW)",
"(p_tf_nuclear_heat_mw)",
self.data.fwbs.p_tf_nuclear_heat_mw,
)
po.ovarre(
self.outfile,
"Fast neut. fluence on i/b coil (n/m2)",
"(nflutfi)",
self.data.fwbs.nflutfi * 1.0e4,
)
po.ovarre(
self.outfile,
"Fast neut. fluence on o/b coil (n/m2)",
"(nflutfo)",
self.data.fwbs.nflutfo * 1.0e4,
)
po.ovarre(
self.outfile,
"Minimum final He conc. in IB VV (appm)",
"(vvhemini)",
self.data.fwbs.vvhemini,
)
po.ovarre(
self.outfile,
"Minimum final He conc. in OB VV (appm)",
"(vvhemino)",
self.data.fwbs.vvhemino,
)
po.ovarre(
self.outfile,
"Maximum final He conc. in IB VV (appm)",
"(vvhemaxi)",
self.data.fwbs.vvhemaxi,
)
po.ovarre(
self.outfile,
"Maximum final He conc. in OB VV (appm)",
"(vvhemaxo)",
self.data.fwbs.vvhemaxo,
)
po.ovarre(
self.outfile,
"Blanket lifetime (full power years)",
Expand All @@ -1614,8 +1566,8 @@ def st_fwbs(self, output: bool):
po.ovarre(
self.outfile,
"Blanket lifetime (calendar years)",
"(t_bl_y)",
self.data.fwbs.t_bl_y,
"(life_blkt)",
self.data.fwbs.life_blkt,
)

if (self.data.heat_transport.ipowerflow == 1) and (
Expand Down
Loading