Skip to content
6 changes: 6 additions & 0 deletions process/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
from process.models.fw import FirstWall
from process.models.ife import IFE
from process.models.pfcoil import PFCoil
from process.models.physics.bootstrap_current import PlasmaBootstrapCurrent
from process.models.physics.current_drive import (
CurrentDrive,
ElectronBernstein,
Expand Down Expand Up @@ -698,11 +699,15 @@ def __init__(self):
)
self.plasma_beta = PlasmaBeta()
self.plasma_inductance = PlasmaInductance()
self.plasma_bootstrap = PlasmaBootstrapCurrent(
plasma_profile=self.plasma_profile
)
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 @@ -721,6 +726,7 @@ def __init__(self):
physics=self.physics,
neoclassics=self.neoclassics,
plasma_beta=self.plasma_beta,
plasma_bootstrap=self.plasma_bootstrap,
)

self.dcll = DCLL(fw=self.fw)
Expand Down
Loading
Loading