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

📄 cylindri.h

📁 pic 模拟程序!面向对象
💻 H
字号:
#ifndef	__CYLINDRI_H#define	__CYLINDRI_H/*====================================================================cylindri.hThis class represents the axis in an azimuthally symmetric system.0.99	(NTG 12-29-93) Separated into individual module from pic.h.0.991	(JohnV 01-03-94) Aesthetics, compile.1.001	(JohnV 05-06-96) Added toNodes().====================================================================*/// #include	"ovector.h"//#include	"particle.h"#ifndef _MSC_VER#include "symmetry.h"#endif#include <oops.h>class CylindricalAxis : public Symmetry{public:	CylindricalAxis(oopicList <LineSegment> *segments) :		Symmetry(segments) { BoundaryType = NOTHING; BoundaryName = "noname";											 BCType = CYLINDRICAL_AXIS;};	ParticleList&	emit(Scalar t,Scalar dt, Species *species);	void	setPassives();	void	collect(Particle& p, Vector3& dxMKS);   virtual void toNodes() throw(Oops);};#endif	//	ifndef __CYLINDRI_H

⌨️ 快捷键说明

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