力學分析開源軟件簡介

力學分析開源軟件簡介

ID:14629401

大?。?55.27 KB

頁數(shù):8頁

時間:2018-07-29

力學分析開源軟件簡介_第1頁
力學分析開源軟件簡介_第2頁
力學分析開源軟件簡介_第3頁
力學分析開源軟件簡介_第4頁
力學分析開源軟件簡介_第5頁
資源描述:

《力學分析開源軟件簡介》由會員上傳分享,免費在線閱讀,更多相關內容在行業(yè)資料-天天文庫。

1、Palabos(http://www.lbmethod.org/)PalaBos的是一款高效的流體模擬及其建模庫,開發(fā)基于C++的STL(標準模板庫),有極強的拓展性!盡管其源代碼是開放,但是基于PalaBos的FlowKit公司已于2011年9月開始運營(http://www.flowkit.com/),主要為流體力學相關領域提供解決方案,并定制軟件。主要的開發(fā)者為我的日內瓦朋友JonasLatt博士,另外一個重要開發(fā)成員Orestis博士也是我的合作者和好朋友,其主要的貢獻在于湍流模型和多塊加密的代碼的開發(fā)。在版本1.0中,目前二維的多塊

2、加密是可用的,三維的曲面邊界可用,需要提供stl幾何文件(參:examples/showCases/aneurysm)。PalaBos的主要特點在于,其在并行結構上采取并行機制與模型分離的方式,使得應用建模與并行機制不相關。這也使得PalaBos的易于擴展。下面舉例來說明其代碼特點:對于二維計算下面兩個基本的文件必須包括#include"palabos2D.h"#include"palabos2D.hh"#include#include#include#include#inc

3、lude基本的名字空間usingnamespaceplb;usingnamespaceplb::descriptors;usingnamespacestd;typedefdoubleT;基本模型的描述。對于PalaBos,眾多模型的應用,都是通過DnQmDescriptor來描述的。用戶可自定義!#defineDESCRIPTORD2Q9Descriptor初場的定義,建議使用這種方法TpoiseuilleVelocity(plintiY,IncomprFlowParamconst¶meters){Ty=(T)

4、iY/parameters.getResolution();return4.*parameters.getLatticeU()*(y-y*y);}壓力的定義TpoiseuillePressure(plintiX,IncomprFlowParamconst¶meters){TLx=parameters.getNx()-1;TLy=parameters.getNy()-1;return8.*parameters.getLatticeNu()*parameters.getLatticeU()/(Ly*Ly)*(Lx/(T)2-(T)i

5、X);}密度場的定義TpoiseuilleDensity(plintiX,IncomprFlowParamconst¶meters){returnpoiseuillePressure(iX,parameters)*DESCRIPTOR::invCs2+(T)1;}根據(jù)坐標進行速度初始化templateclassPoiseuilleVelocity{public:PoiseuilleVelocity(IncomprFlowParamparameters_):parameters(parameter

6、s_){}voidoperator()(plintiX,plintiY,Array&u)const{u[0]=poiseuilleVelocity(iY,parameters);u[1]=T();}private:IncomprFlowParamparameters;};根據(jù)坐標進行密度初始化templateclassPoiseuilleDensity{public:PoiseuilleDensity(IncomprFlowParamparameters_):parameters(parameter

7、s_){}Toperator()(plintiX,plintiY)const{returnpoiseuilleDensity(iX,parameters);}private:IncomprFlowParamparameters;};零速度場初始化templateclassPoiseuilleDensityAndZeroVelocity{public:PoiseuilleDensityAndZeroVelocity(IncomprFlowParamparameters_):parameters(paramete

8、rs_){}voidoperator()(plintiX,plintiY,T&rho,Array&u)const{rho=poiseuilleDensit

當前文檔最多預覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當前文檔最多預覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學公式或PPT動畫的文件,查看預覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權歸屬用戶,天天文庫負責整理代發(fā)布。如果您對本文檔版權有爭議請及時聯(lián)系客服。
3. 下載前請仔細閱讀文檔內容,確認文檔內容符合您的需求后進行下載,若出現(xiàn)內容與標題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。