-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wave_load #1
Comments
Can you please provide the reasons for those changes? You can reference the relevant equations from books or research articles if possible. |
|
@rskjetne Can we have you input here
|
wave_loads.py -> deg2rad(rao_phase) #Roa_phase is in grad from the json file, and needs to be converted
SOLUTION:
mclsimpy/src/mclsimpy/waves/wave_loads.py
Line 160 in 2362903
This needs to be changed to this:
phase = np.deg2rad(np.array(self._params['forceRAO']['phase'])[:, :, :, 0])
wave_loads.py -> tau_sv = self.second_order_loads(time, eta[-1]) #Changed from eta[-2] to eta[-1]
SOLUTION:
mclsimpy/src/mclsimpy/waves/wave_loads.py
Line 149 in 2362903
This needs to be changed to this:
tau_sv = self.second_order_loads(time, eta[-1])
wave_loads.py -> change from + to - in second second_order_loads for self._P -- Aligns with wf loads
SOLUTION:
mclsimpy/src/mclsimpy/waves/wave_loads.py
Line 267 in 2362903
This and the line over and under needs to be:
tau_sv = np.real(self._amp@(Qnp.exp(self._W(1jt) - 1jself._P))@self._amp)
Credz Håkon bakke
The text was updated successfully, but these errors were encountered: