You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1: Is it possible to import/export the weights as a CSV file or something similar so we can share parameters
2: Is it possible to include an input function for a time-dependent perturbation as a parameter. Maybe just a simple function which defaults to y(t) = x. but allows us to add in our own perturbations eg y(t) = sin(t) to perturb the potential as a function of time? Where t is whatever time unit is used for each 'step' of course.
The text was updated successfully, but these errors were encountered:
2: Is it possible to include an input function for a time-dependent perturbation as a parameter. Maybe just a simple function which defaults to y(t) = x. but allows us to add in our own perturbations eg y(t) = sin(t) to perturb the potential as a function of time? Where t is whatever time unit is used for each 'step' of course.
What exactly do you mean by that? Please be more explicit.
@KhadrasWellun I would assume that each particle, n has a attraction/repulsion term for each other particle in the simulation let's call these terms n_x (x = 1, 2, 3... n).
For each time step, the position of each particle relative to its nearest neighbours change according to the magnitudes of n_x.
So, there add in a new integer variable, t_angle, which will be defined as the number of time steps for a single revolution (ie 2pi).
Then, add in another variable which is the equation input that is a function of t_angle, lets call this eq_in(t_angle).
Create a lookup table for eq_lookup = [t_angle, eq_in] for all values of t_angle.
Now let n_x * eq_loopup[n], n = 1, 2, 3... t_angle(max) and loop back to n =1 when n = t_angle(max).
This way, the attractive and repulsive forces can be multiplied by a time-dependent variable, e.g. a sine wave term or other more complex wavefunctions. The equation can be input through the GUI.
Hi, I have two requests,
1: Is it possible to import/export the weights as a CSV file or something similar so we can share parameters
2: Is it possible to include an input function for a time-dependent perturbation as a parameter. Maybe just a simple function which defaults to y(t) = x. but allows us to add in our own perturbations eg y(t) = sin(t) to perturb the potential as a function of time? Where t is whatever time unit is used for each 'step' of course.
The text was updated successfully, but these errors were encountered: