Skip to content

Commit 1f98f7f

Browse files
Fixed a bug in Funnel Two-Layer MRAC
1 parent f5148df commit 1f98f7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drone_bb_test_COMPLETE_with_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4054,8 +4054,8 @@ def FunnelTwoLayerMRACwithBASELINE(t, y):
40544054
###################################################################
40554055

40564056
elif controller_type == 'FunnelTwoLayerMRACwithBASELINE':
4057-
# Integrating the ODEs through RK4 for Two-Layer MRAC with Baseline controller
4058-
yout = rk4singlestep(controller.TwoLayerMRACwithBASELINE, m_timestep, time_now, yin)
4057+
# Integrating the ODEs through RK4 for Funnel Two-Layer MRAC with Baseline controller
4058+
yout = rk4singlestep(controller.FunnelTwoLayerMRACwithBASELINE, m_timestep, time_now, yin)
40594059
Y_list = np.append(Y_list,np.resize(yout,(number_of_states,1)), axis=1)
40604060
yin = yout
40614061

0 commit comments

Comments
 (0)