Skip to main content
zenodoopen

LPSE data for ray-based CBET test cases

<p>This dataset contains field data from LPSE simulations for the purpose of validating ray-based CBET models.&nbsp; The input parameters required to replicate these results are given in the Physics of Plasmas paper &quot;Validation of ray-based cross-beam energy transfer models.&quot;&nbsp; All of the data is stored in HDF5 files.&nbsp; Each file has three data sets: Ez, xAxis, and yAxis (the 1-D datset does not have&nbsp;yAxis).</p> <p>Here is an example of the Matlab code to open and plot one of the 2-D files:</p> <pre><code>filename = 'two_beam_at_caustic.h5'; hInfo = h5info(filename ); data = h5read(filename , '/Ez'); xAxis = h5read(filename , '/x_axis'); yAxis = h5read(filename , '/y_axis'); figure(1); clf; imagesc(yAxis, xAxis, data), colorbar, axis xy </code></pre> <p>Here is an example of the Python code to open and plot one of the 2-D files:</p> <pre><code class="language-python">import h5py import matplotlib.pyplot as plt filename = 'two_beam_at_caustic.h5' f = h5py.File(filename, 'r') Ez = list(f["Ez"]) x_axis = list(f["x_axis"]) y_axis = list(f["y_axis"]) plt.figure() plt.pcolormesh(x_axis,y_axis,Ez) plt.colorbar() plt.show() </code></pre> <p>&nbsp;</p>

ShareScore

40/100

Overall dataset sharing score

Score breakdown

These five areas show where the dataset supports — or may limit — practical reuse.

Stewardship
4
Harmonization
4
Access
20
Reuse readiness
8
Engagement
4