torquemodel.h
来自「遗传自适应算法的源代码」· C头文件 代码 · 共 43 行
H
43 行
// torquemodel.h: interface for the torquemodel class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_TORQUEMODEL_H__B37B9D9A_9C08_4F01_B9E3_699C00C29A05__INCLUDED_)
#define AFX_TORQUEMODEL_H__B37B9D9A_9C08_4F01_B9E3_699C00C29A05__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "global.h"
class torquemodel
{
public:
torquemodel();
virtual ~torquemodel();
double torque(int i,global x);
protected:
double de_drag;
double m;//损耗系数
double Tb;
double Tf;
double f;
double CTEXX;
double C8;
double H;
double h;
double R;
double C15;
double D2;
double D3;
double D1;
double B;
};
#endif // !defined(AFX_TORQUEMODEL_H__B37B9D9A_9C08_4F01_B9E3_699C00C29A05__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?