├── Chattering free full-order sliding-mode control ├── Readme.txt ├── code │ ├── second_order │ │ ├── ctrl_SMC.m │ │ ├── myplot.m │ │ ├── plant.m │ │ └── test_sim.mdl │ └── third_order │ │ ├── ctrl_SMC.m │ │ ├── myplot.m │ │ ├── plant.m │ │ └── test_sim.mdl ├── sim_result1.png ├── sim_result2.png └── 论文.pdf ├── Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control ├── Readme.txt ├── code │ ├── ctrl_DPRL_I_SMC.m │ ├── ctrl_PRL_I_SMC.m │ ├── ctrl_SMC.m │ ├── myplot.m │ ├── plant.m │ ├── sat.m │ └── test_sim.mdl ├── sim_result.png └── 论文.pdf ├── Finite-time sliding mode synchronization of chaotic systems ├── Readme.txt ├── code │ ├── ctrl_SMC.m │ ├── ctrl_SMC_Power.m │ ├── myplot.m │ ├── plant1.m │ ├── plant2.m │ └── test_sim.mdl ├── sim_result.png └── 论文.pdf ├── Global terminal sliding mode control with the quick reaching law and its application ├── Readme.txt ├── code │ ├── ctrl_SMC.m │ ├── ctrl_SMCQ.m │ ├── ctrl_TSMC.m │ ├── ctrl_TSMCQ.m │ ├── myplot.m │ ├── plant.m │ ├── sat.m │ └── test_sim.mdl ├── sim_result.png └── 论文.pdf ├── README.md └── Robust fixed-time stability application to sliding mode control ├── Readme.txt ├── code ├── Constant exponent coefficient │ ├── ctrl_SMC1.m │ ├── ctrl_SMC2.m │ ├── ctrl_SMC3.m │ ├── myplot.m │ ├── plant.m │ └── test_sim.mdl └── Variable exponent coefficient │ ├── part1 │ ├── ctrl_SMC1.m │ ├── myplot.m │ ├── plant.m │ ├── plant1.m │ ├── plant2.m │ ├── plant3.m │ └── test_sim.mdl │ └── part2 │ ├── ctrl_SMC1.m │ ├── myplot.m │ ├── plant.m │ └── test_sim.mdl ├── sim_result1.png ├── sim_result2.png ├── sim_result3.png └── 论文.pdf /Chattering free full-order sliding-mode control/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/Readme.txt -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/code/second_order/ctrl_SMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/code/second_order/ctrl_SMC.m -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/code/second_order/myplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/code/second_order/myplot.m -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/code/second_order/plant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/code/second_order/plant.m -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/code/second_order/test_sim.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/code/second_order/test_sim.mdl -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/code/third_order/ctrl_SMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/code/third_order/ctrl_SMC.m -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/code/third_order/myplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/code/third_order/myplot.m -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/code/third_order/plant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/code/third_order/plant.m -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/code/third_order/test_sim.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/code/third_order/test_sim.mdl -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/sim_result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/sim_result1.png -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/sim_result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/sim_result2.png -------------------------------------------------------------------------------- /Chattering free full-order sliding-mode control/论文.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Chattering free full-order sliding-mode control/论文.pdf -------------------------------------------------------------------------------- /Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/Readme.txt -------------------------------------------------------------------------------- /Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/ctrl_DPRL_I_SMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/ctrl_DPRL_I_SMC.m -------------------------------------------------------------------------------- /Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/ctrl_PRL_I_SMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/ctrl_PRL_I_SMC.m -------------------------------------------------------------------------------- /Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/ctrl_SMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/ctrl_SMC.m -------------------------------------------------------------------------------- /Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/myplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/myplot.m -------------------------------------------------------------------------------- /Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/plant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/plant.m -------------------------------------------------------------------------------- /Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/sat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/sat.m -------------------------------------------------------------------------------- /Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/test_sim.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/code/test_sim.mdl -------------------------------------------------------------------------------- /Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/sim_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/sim_result.png -------------------------------------------------------------------------------- /Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/论文.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Control Algorithms of Magnetic Suspension Systems Based on the Improved Double Exponential Reaching Law of Sliding Mode Control/论文.pdf -------------------------------------------------------------------------------- /Finite-time sliding mode synchronization of chaotic systems/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Finite-time sliding mode synchronization of chaotic systems/Readme.txt -------------------------------------------------------------------------------- /Finite-time sliding mode synchronization of chaotic systems/code/ctrl_SMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Finite-time sliding mode synchronization of chaotic systems/code/ctrl_SMC.m -------------------------------------------------------------------------------- /Finite-time sliding mode synchronization of chaotic systems/code/ctrl_SMC_Power.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Finite-time sliding mode synchronization of chaotic systems/code/ctrl_SMC_Power.m -------------------------------------------------------------------------------- /Finite-time sliding mode synchronization of chaotic systems/code/myplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Finite-time sliding mode synchronization of chaotic systems/code/myplot.m -------------------------------------------------------------------------------- /Finite-time sliding mode synchronization of chaotic systems/code/plant1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Finite-time sliding mode synchronization of chaotic systems/code/plant1.m -------------------------------------------------------------------------------- /Finite-time sliding mode synchronization of chaotic systems/code/plant2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Finite-time sliding mode synchronization of chaotic systems/code/plant2.m -------------------------------------------------------------------------------- /Finite-time sliding mode synchronization of chaotic systems/code/test_sim.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Finite-time sliding mode synchronization of chaotic systems/code/test_sim.mdl -------------------------------------------------------------------------------- /Finite-time sliding mode synchronization of chaotic systems/sim_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Finite-time sliding mode synchronization of chaotic systems/sim_result.png -------------------------------------------------------------------------------- /Finite-time sliding mode synchronization of chaotic systems/论文.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Finite-time sliding mode synchronization of chaotic systems/论文.pdf -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/Readme.txt: -------------------------------------------------------------------------------- 1 | 这篇文章主要提出了滑模控制的一个新的趋近律,能在有限时间内到达滑模面。 2 | -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/code/ctrl_SMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Global terminal sliding mode control with the quick reaching law and its application/code/ctrl_SMC.m -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/code/ctrl_SMCQ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Global terminal sliding mode control with the quick reaching law and its application/code/ctrl_SMCQ.m -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/code/ctrl_TSMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Global terminal sliding mode control with the quick reaching law and its application/code/ctrl_TSMC.m -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/code/ctrl_TSMCQ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Global terminal sliding mode control with the quick reaching law and its application/code/ctrl_TSMCQ.m -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/code/myplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Global terminal sliding mode control with the quick reaching law and its application/code/myplot.m -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/code/plant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Global terminal sliding mode control with the quick reaching law and its application/code/plant.m -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/code/sat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Global terminal sliding mode control with the quick reaching law and its application/code/sat.m -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/code/test_sim.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Global terminal sliding mode control with the quick reaching law and its application/code/test_sim.mdl -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/sim_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Global terminal sliding mode control with the quick reaching law and its application/sim_result.png -------------------------------------------------------------------------------- /Global terminal sliding mode control with the quick reaching law and its application/论文.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Global terminal sliding mode control with the quick reaching law and its application/论文.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SMC 2 | 滑模控制相关论文及仿真复现 3 | -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/Readme.txt: -------------------------------------------------------------------------------- 1 | 这篇文章主要提出了一种新的固定时间趋近律。 2 | -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/ctrl_SMC1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/ctrl_SMC1.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/ctrl_SMC2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/ctrl_SMC2.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/ctrl_SMC3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/ctrl_SMC3.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/myplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/myplot.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/plant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/plant.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/test_sim.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Constant exponent coefficient/test_sim.mdl -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/ctrl_SMC1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/ctrl_SMC1.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/myplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/myplot.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/plant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/plant.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/plant1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/plant1.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/plant2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/plant2.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/plant3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/plant3.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/test_sim.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part1/test_sim.mdl -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part2/ctrl_SMC1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part2/ctrl_SMC1.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part2/myplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part2/myplot.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part2/plant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part2/plant.m -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part2/test_sim.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/code/Variable exponent coefficient/part2/test_sim.mdl -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/sim_result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/sim_result1.png -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/sim_result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/sim_result2.png -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/sim_result3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/sim_result3.png -------------------------------------------------------------------------------- /Robust fixed-time stability application to sliding mode control/论文.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abner-fu/SMC/HEAD/Robust fixed-time stability application to sliding mode control/论文.pdf --------------------------------------------------------------------------------