Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the 2nd gen rebco critical surface"""

import matplotlib.pyplot as plt
import numpy as np
import plotly.graph_objects as go
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the BI2212 critical surface"""

import matplotlib.pyplot as plt
import numpy as np
import plotly.graph_objects as go
Expand Down
2 changes: 2 additions & 0 deletions documentation/scripts/plotting_scripts/d_shaped_fw_area.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the D-shaped first wall area"""

import numpy as np
from bokeh.io import output_file, save
from bokeh.layouts import column, row
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the deuterium branching"""

import matplotlib.pyplot as plt
import numpy as np

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the divtart cross section"""

import numpy as np
from bokeh.io import output_file, save
from bokeh.layouts import column
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the Durham NbTi critical surface"""

import matplotlib.pyplot as plt
import numpy as np
import plotly.graph_objects as go
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the Durham REBCO critical surface"""

import matplotlib.pyplot as plt
import numpy as np
import plotly.graph_objects as go
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the EUTF4 Nb3Sn critical surface"""

import matplotlib.pyplot as plt
import numpy as np
import plotly.graph_objects as go
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the fast alpha pressure"""

import numpy as np
from bokeh.layouts import column, row
from bokeh.models import ColumnDataSource, CustomJS, Slider
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the Hazleton-Zhai REBCO critical surface"""

import matplotlib.pyplot as plt
import numpy as np
import plotly.graph_objects as go
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the Menard normalised beta limit"""

import numpy as np
from bokeh.models import ColumnDataSource
from bokeh.plotting import figure, output_file, save
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the old empirical NBTI critical NbTi"""

import matplotlib.pyplot as plt
import numpy as np
import plotly.graph_objects as go
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the original normalised beta limit"""

import numpy as np
from bokeh.models import ColumnDataSource
from bokeh.plotting import figure, output_file, save
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the plasma cross section"""

import math

import numpy as np
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the pulsed current"""

import matplotlib.pyplot as plt

# Define data points for each segment
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the Hastie current profile"""

import numpy as np
from bokeh.layouts import column, row
from bokeh.models import ColumnDataSource, CustomJS, Slider
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the parabolic profiles"""

import numpy as np
from bokeh.layouts import column, row
from bokeh.models import ColumnDataSource, CustomJS, Slider
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the pedestal profiles"""

import numpy as np
from bokeh.layouts import column, row
from bokeh.models import ColumnDataSource, CustomJS, Slider
Expand Down
2 changes: 2 additions & 0 deletions documentation/scripts/plotting_scripts/profile_peng_qbar.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Module containing routines to plot the average safety factor"""

import numpy as np
from bokeh.layouts import column, row
from bokeh.models import ColumnDataSource, CustomJS, Slider
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""Module containing routines to plot the normalised
synchrotron loss vs wall reflectivity
"""

import numpy as np
from bokeh.models import ColumnDataSource
from bokeh.plotting import figure, output_file, save
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""Module containing routines to plot the Western superconducting
NbSn critical current density
"""

import matplotlib.pyplot as plt
import numpy as np
import plotly.graph_objects as go
Expand Down
Loading