|
int | test_plot_fieldline.nphi = 10 |
|
int | test_plot_fieldline.nthe = 5 |
|
int | test_plot_fieldline.nsize = 100 |
|
| test_plot_fieldline.nline = nphi*nthe |
|
int | test_plot_fieldline.B0 = 5 |
|
int | test_plot_fieldline.r0 = 5 |
|
int | test_plot_fieldline.r1 = 10 |
|
list | test_plot_fieldline.phi = [ 0. + i*360./nphi for i in range(0,nphi) ] |
|
list | test_plot_fieldline.the = [ -90. + j*180./(nthe-1) for j in range(0,nthe) ] |
|
list | test_plot_fieldline.r = [ r0 + k*(r1-r0)/(nsize-1) for k in range(0,nsize) ] |
|
list | test_plot_fieldline.fieldlines_ref = [ module_fieldline.Fieldline() for iline in range(0,nline) ] |
|
tuple | test_plot_fieldline.iline = (i-1) |
|
tuple | test_plot_fieldline.fig_size = (12,6) |
|
int | test_plot_fieldline.fig_resolution = 100 |
|
tuple | test_plot_fieldline.fig = plt.figure(num=1,figsize=fig_size,dpi=fig_resolution) |
|
tuple | test_plot_fieldline.sub = fig.add_subplot(121, projection='polar') |
|
tuple | test_plot_fieldline.plots_fl = plot_common.fieldline2D(sub,fieldlines_ref,'red','Fieldlines r-lat',proj='rlat') |
|