|
tuple | test_plot_cube3D.folder_test = os.path.join('dir.test','TEST') |
|
int | test_plot_cube3D.nphi = 20 |
|
int | test_plot_cube3D.nthe = 10 |
|
int | test_plot_cube3D.nr = 5 |
|
int | test_plot_cube3D.B0 = 5 |
|
| test_plot_cube3D.r0 = module_common.rsun2km |
|
int | test_plot_cube3D.r1 = 10 |
|
tuple | test_plot_cube3D.cube3D_ref = module_cube3D.Cube3D() |
|
list | test_plot_cube3D.phi = [ 0. + i*360./nphi for i in range(0,nphi) ] |
|
list | test_plot_cube3D.the = [ -90. + j*180./(nthe-1) for j in range(0,nthe) ] |
|
list | test_plot_cube3D.r = [ r0 + k*(r1-r0)/(nr-1) for k in range(0,nr) ] |
|
tuple | test_plot_cube3D.Bk = (nr-k) |
|
tuple | test_plot_cube3D.fig_size = (18,9) |
|
int | test_plot_cube3D.fig_resolution = 100 |
|
tuple | test_plot_cube3D.fig = plt.figure(num=1,figsize=fig_size,dpi=fig_resolution) |
|
int | test_plot_cube3D.vmin = -1 |
|
int | test_plot_cube3D.vmax = 1 |
|
tuple | test_plot_cube3D.sub = fig.add_subplot(221) |
|
tuple | test_plot_cube3D.plot_br = plot_common.slice2D(sub,cube3D_ref,'br',0,k,vmin,vmax,0) |
|