⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 global.h

📁 This program proposed improved adaptive genetic algorithms saccording to the idea that the best indi
💻 H
字号:
// global.h: interface for the global class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GLOBAL_H__BF3567A6_0A11_4F32_A390_3271C42CC517__INCLUDED_)
#define AFX_GLOBAL_H__BF3567A6_0A11_4F32_A390_3271C42CC517__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define EE 0.28  //泊松系数
#define YY 21000 //杨氏模量
#define PI 3.14159265
#define AA 0.0000214
#include "excel9.h"
#include "math.h"
#include "iostream.h"



class global  
{
public:
	void InitializeWrite();
	InitializeData();
	global();
	virtual ~global();
	bool label;
	int time;
	int m;
	double max_speed;
	double max_in_speed;  //轧机入口速度
	double ratio[5];
	double max_out_speed;  //轧机出口速度
	double max_P;
	double gear_ratio[5];    //齿轮箱比率
	double max_power[5];
	double power_ratio[5];//各机架功率平衡系数
	double de_drag[5];   //考虑加工硬化(累积)的材料变形阻力;
	double f[5];    //摩擦系数
	double B[5];  //带钢宽度;
	double P[5];  //轧制力
	double r[5]; //相对压下量
	double R[5];  //轧辊半径
	double dh[5]; //绝对压下量
	double H0;    //入口厚度
	double h5;    //出口厚度
	double H[5];  //各机架入口厚度
	double h[5];  //各机架出口厚度
	double Tb[5]; //各机架后张力
	double Tf[5];  //各机架前张力
	double W[5];   //各机架功率
	
	double MM[5];    //各机架电机转矩
	double v[5];    //各机架出口速度
	double vr[5];    //各机架轧辊线速度
	double n[5];    //各机架电机转速
	
};

#endif // !defined(AFX_GLOBAL_H__BF3567A6_0A11_4F32_A390_3271C42CC517__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -