You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Let's start by positioning the PF coils, so that we stand a chance to reproduce the desired plasma shape.
191
197
# This will be important to ensure the stability of the `ActorStationaryPlasma` that we are going to run next.
192
198
193
-
actor =FUSE.ActorPFdesign(dd, act);
199
+
FUSE.ActorPFdesign(dd, act; do_plot=true); # instead of setting `act.ActorPFdesign.do_plot=true` we can just pass `do_plot=true` as argument without chaning `act`
194
200
195
201
# The `ActorStationaryPlasma` iterates between plasma transport, pedestal, equilibrium and sources to return a self-consistent plasma solution
196
202
@@ -247,7 +253,7 @@ plot(dd.pf_passive)
247
253
# We can now give the PF coils their final position given the new build
248
254
249
255
actor = FUSE.ActorPFdesign(dd, act);
250
-
plot(actor)
256
+
plot(actor)# some actors define their own plot
251
257
252
258
# With information about both pf_active and pf_passive we can now evaluate vertical stability
0 commit comments