Replies: 1 comment
-
You can replace the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
How can I export the raw data (grid, Y and time) easily to e.g. CSV file?
for example for Stochastic simulation code:
--
from pde import KPZInterfacePDE, MemoryStorage, ScalarField, UnitGrid, plot_kymograph
grid = UnitGrid([64]) # generate grid
state = ScalarField.random_harmonic(grid) # generate initial condition
eq = KPZInterfacePDE(noise=1) # define the SDE
storage = MemoryStorage()
eq.solve(state, t_range=10, dt=0.01, tracker=storage.tracker(0.5))
plot_kymograph(storage)
--
Thanks
Beta Was this translation helpful? Give feedback.
All reactions