Tagged: 2019 R2, fluent, General - FLUENT
-
-
January 31, 2023 at 8:55 amFAQParticipant
SOFCモジュールのSOFC Modelパネルでは、 電気伝導率の値は5種類しか与えることができません。 電気伝導率を6種類以上の値で与える方法は、以下の通りです。 1. Define Electric Field Model Parametersパネルで、 電気伝導率を指定するZoneを全てConductive Regions-1に指定する。 2. sofc/src/constit.cの電気伝導率の部分を以下のように修正する。 注:プログラム中のLookup_Thread(d, 4)の「4」などはZone IDです。 修正例中のelse if(…){…}を繰り返すことで、 6種類以上の値を使用することが可能です。 例) real CONDUCTIVITY_CELL(cell_t c, Thread *t) { Domain *d; d=Get_Domain(1); if (!USER_DEFINED_ZONE_CONDUCTIVITIES) return CONDUCTIVITY_CELL_THREAD(t); else { int cond_group = LOOKUP_CONDUCTIVE_ZONE(t); switch (cond_group) { case 1: { if (t==Lookup_Thread(d, 4)) /* Zone ID=4の電気伝導率 */ { real cond,temp = C_T(c,t); /* 電気伝導率が一定の場合 */ cond = 10000.0; return cond; } else if (t==Lookup_Thread(d, 5)) /* Zone ID=5の電気電導率 */ { real cond,temp = C_T(c,t); cond = 10000.0*temp; /* 電気伝導率に温度依存性を付ける場合 */ return cond; } /* ここに必要な数だけelse if (…){…}を繰り返す。 */ } } } } 注)constit.c中の #define USER_DEFINED_ZONE_CONDUCTIVITIES 0 を #define USER_DEFINED_ZONE_CONDUCTIVITIES 1 に変更しておく。
-
Introducing Ansys Electronics Desktop on Ansys Cloud
The Watch & Learn video article provides an overview of cloud computing from Electronics Desktop and details the product licenses and subscriptions to ANSYS Cloud Service that are...
How to Create a Reflector for a Center High-Mounted Stop Lamp (CHMSL)
This video article demonstrates how to create a reflector for a center high-mounted stop lamp. Optical Part design in Ansys SPEOS enables the design and validation of multiple...
Introducing the GEKO Turbulence Model in Ansys Fluent
The GEKO (GEneralized K-Omega) turbulence model offers a flexible, robust, general-purpose approach to RANS turbulence modeling. Introducing 2 videos: Part 1 provides background information on the model and a...
Postprocessing on Ansys EnSight
This video demonstrates exporting data from Fluent in EnSight Case Gold format, and it reviews the basic postprocessing capabilities of EnSight.
- Mesh Interfaceで周期境界を設定する方法
- エラーメッセージ:Signal caught: Abnormal termination について
- Fluentでのcasとdatファイルの読み込み注意点
- Windowsでバックグラウンド実行時Fluentソルバーの停止とファイル保存
- CFD-POSTで、最大値と最小値の場所を表示する方法は?
- STLファイルのエクスポートは可能ですか?
- Linux環境でコマンドラインからFluentを起動する方法
- resファイルからモニターデータをcsvで出力する方法
- Fluentから出力されるEnSightフォーマットの拡張子(encas)とEnSightの標準フォーマットの拡張子(case)が違いますが内容に何か違いはありますか。
- Stlファイルを、Solid化するには?
© 2024 Copyright ANSYS, Inc. All rights reserved.