Skip to content
Draft
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion process/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
)
from process.log import logging_model_handler, show_errors
from process.pfcoil import PFCoil
from process.physics import DetailedPhysics, Physics, PlasmaBeta, PlasmaInductance
from process.physics import DetailedPhysics, Physics, PlasmaBeta, PlasmaInductance, PlasmaBootstrapCurrent
from process.plasma_geometry import PlasmaGeom
from process.plasma_profiles import PlasmaProfile
from process.power import Power
Expand Down Expand Up @@ -684,11 +684,13 @@ def __init__(self):
)
self.plasma_beta = PlasmaBeta()
self.plasma_inductance = PlasmaInductance()
self.plasma_bootstrap = PlasmaBootstrapCurrent()
self.physics = Physics(
plasma_profile=self.plasma_profile,
current_drive=self.current_drive,
plasma_beta=self.plasma_beta,
plasma_inductance=self.plasma_inductance,
plasma_bootstrap=self.plasma_bootstrap,
)
self.physics_detailed = DetailedPhysics(
plasma_profile=self.plasma_profile,
Expand All @@ -707,6 +709,7 @@ def __init__(self):
neoclassics=self.neoclassics,
plasma_beta=self.plasma_beta,
plasma_inductance=self.plasma_inductance,
plasma_bootstrap=self.plasma_bootstrap,
)
self.dcll = DCLL(fw=self.fw)

Expand Down
Loading
Loading