![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
dhybridrpy
allows you to easily load and plot data from dHybridR
simulations. It provides programmatic access to simulation input and output data and the ability to quickly visualize that data.
dask
.To install dhybridrpy
, clone the repository and pip-install:
git clone https://github.com/bwostler/dhybridrpy.git
pip install ./dhybridrpy
Basic usage of the package:
from dhybridrpy import DHybridrpy
# Enter your input file and output folder paths here
input_file = "examples/data/inputs/input"
output_folder = "examples/data/Output"
dpy = DHybridrpy(input_file=input_file, output_folder=output_folder)
# Print simulation timesteps
print(dpy.timesteps())
# Access an input variable
print(f"Timestep = {dpy.inputs['time']['dt']}")
# Access data at a specific timestep
ts = 1
Bx = dpy.timestep(ts).fields.Bx()
print(Bx.data)
# Plot data
import matplotlib.pyplot as plt
Bx.plot()
plt.show()
Further examples can be found in the examples
folder.
Project licensed under the GNU Affero General Public License v3.0. See the LICENSE file for details.
FAQs
A Python package to easily read input + output data from dHybridR.
We found that dhybridrpy-test demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.