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

📄 be11.c

📁 an introduction to boundary element methods一书源码
💻 C
字号:
#include "cbox11.h"main(){	/*[The lengths of arrays has been increased by one, first 					one is not used ]*/	int Code[101],Dim,NN;	float X[52], Y[52], Xm[51], Ym[51],Xi[21], Yi[21],Bc[101],F[101];	float G[101][101],H[101][101],D,stress[61],displ[41];       	Dim = 100;	/*[Dim = Max dimension of the system AX = F]*/	/*[ Read Data ]*/		Input11(Xi,Yi,X,Y,Code,Bc);			/*[ Compute matrices G and H and form the system AX = F  ]*/		Sys11(X,Y,Xm,Ym,G,H,Bc,F,Code,Dim);		/*[Solve the system AX = F ]*/		NN = 2*N;		Solve(G,F,&D,NN,Dim);		/*[ Compute stress and displacement at interior points ]*/		Inter11(Bc,F,Code,Xi,Yi,X,Y,stress,displ);		/*[Output solution at boundary nodes and interior Points ]*/		Out11(Xm,Ym,Bc,F,Xi,Yi,stress,displ);}

⌨️ 快捷键说明

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