├── .gitignore ├── Current.cpp ├── Current.h ├── DataStruct.h ├── EnvObserver.cpp ├── EnvObserver.h ├── Filter.cpp ├── Filter.h ├── NMPCcontroller.cpp ├── NMPCcontroller.h ├── OptController.cpp ├── OptController.h ├── OptionDialog.cpp ├── OptionDialog.h ├── OptionDialog.ui ├── PIDController.cpp ├── PIDController.h ├── PlotData.cpp ├── PlotData.h ├── ShipControl.cpp ├── ShipControl.h ├── ShipControl3D.pro ├── ShipControl3D结构简介.xlsx ├── ShipGraph.cpp ├── ShipGraph.h ├── ShipModel.cpp ├── ShipModel.h ├── ShipParameter.cpp ├── ShipParameter.h ├── Tool.cpp ├── Tool.h ├── WOPC.cpp ├── WOPC.h ├── Wave.cpp ├── Wave.h ├── Wind.cpp ├── Wind.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── s175.mat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/.gitignore -------------------------------------------------------------------------------- /Current.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/Current.cpp -------------------------------------------------------------------------------- /Current.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/Current.h -------------------------------------------------------------------------------- /DataStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/DataStruct.h -------------------------------------------------------------------------------- /EnvObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/EnvObserver.cpp -------------------------------------------------------------------------------- /EnvObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/EnvObserver.h -------------------------------------------------------------------------------- /Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/Filter.cpp -------------------------------------------------------------------------------- /Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/Filter.h -------------------------------------------------------------------------------- /NMPCcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/NMPCcontroller.cpp -------------------------------------------------------------------------------- /NMPCcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/NMPCcontroller.h -------------------------------------------------------------------------------- /OptController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/OptController.cpp -------------------------------------------------------------------------------- /OptController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/OptController.h -------------------------------------------------------------------------------- /OptionDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/OptionDialog.cpp -------------------------------------------------------------------------------- /OptionDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/OptionDialog.h -------------------------------------------------------------------------------- /OptionDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/OptionDialog.ui -------------------------------------------------------------------------------- /PIDController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/PIDController.cpp -------------------------------------------------------------------------------- /PIDController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/PIDController.h -------------------------------------------------------------------------------- /PlotData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/PlotData.cpp -------------------------------------------------------------------------------- /PlotData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/PlotData.h -------------------------------------------------------------------------------- /ShipControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/ShipControl.cpp -------------------------------------------------------------------------------- /ShipControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/ShipControl.h -------------------------------------------------------------------------------- /ShipControl3D.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/ShipControl3D.pro -------------------------------------------------------------------------------- /ShipControl3D结构简介.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/ShipControl3D结构简介.xlsx -------------------------------------------------------------------------------- /ShipGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/ShipGraph.cpp -------------------------------------------------------------------------------- /ShipGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/ShipGraph.h -------------------------------------------------------------------------------- /ShipModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/ShipModel.cpp -------------------------------------------------------------------------------- /ShipModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/ShipModel.h -------------------------------------------------------------------------------- /ShipParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/ShipParameter.cpp -------------------------------------------------------------------------------- /ShipParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/ShipParameter.h -------------------------------------------------------------------------------- /Tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/Tool.cpp -------------------------------------------------------------------------------- /Tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/Tool.h -------------------------------------------------------------------------------- /WOPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/WOPC.cpp -------------------------------------------------------------------------------- /WOPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/WOPC.h -------------------------------------------------------------------------------- /Wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/Wave.cpp -------------------------------------------------------------------------------- /Wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/Wave.h -------------------------------------------------------------------------------- /Wind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/Wind.cpp -------------------------------------------------------------------------------- /Wind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/Wind.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/mainwindow.h -------------------------------------------------------------------------------- /s175.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackStormDSW/ShipControl3D/HEAD/s175.mat --------------------------------------------------------------------------------