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

📄 grid.h.old

📁 this a Navier-Stokes equations solver. It support grids contains of multiple connected rectangles. S
💻 OLD
字号:
#ifndef _FLOW_GRID_H_
#define _FLOW_GRID_H_

#include <list>
#include <vector>
#include <float.h>

using namespace std;

struct pos{
	float x;
	float y;
	int index;
};

struct node{
	float density;
	float term;
	float vx;
	float vy;
};

class grid{
public:
	//grid();
	//grid(const pos &s, const pos &e,const float w);
	//~grid();

	// geometry config
	int start, end;
	float rad;
	// numeric simulation grid
	node *array;
	int width;
	int height;
	// neighbors
	grid** streams;
};

class mech{
public:
	//mech();
	//~mech();
	
	int read_file(const char *filename);
	int update_grids(const list<grid> &g,const vector<pos> &v);

	float dx, dy;
	pos *vertexes;
	int vertexes_count;
	grid *grids;
	int grids_count;
};

#endif

⌨️ 快捷键说明

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