Closed yb6599 closed 3 months ago
I believe that we're using the pysindy
implementation of Savitzky-Golay, rather than the derivative
one. What are the values of diff_params["sfd-ps"]
and diff_params["savgol"]
?
The values are:
"sfd-ps": ND({"diffcls": "SmoothedFiniteDifference", "axis":-2}),
"savgol": ND({"diffcls": "sindy", "kind": "savitzky_golay", "axis": -2, "left":0.1, "right":0.1, "order":3}),
I would use diff_params["sfd-ps"]
. ps.SmoothedFiniteDifference
also uses a Savitzky-Golay smoother.
Got it
Hey @Jacob-Stevens-Haas, I came across this in
config.py
:This is supposed to be Savitzky Golay Smoothing, so should it not be
diff_params["savgol"]
instead ofdiff_params["sfd-ps"]
. What should I use during the pde experiments?