LoginSignup
10
11

llama2-13bとlangchainを組み合わせてローカルで動作するQ&Aボットを作成する

Last updated at Posted at 2023-07-30

TL;DR

  • llama-2-13b-chat.ggmlv3.q4_K_M.bin)とlangchainのContextualCompressionRetriever,RetrievalQAを使用してQ&Aボットを作成した。
  • 文書の埋め込みにMultilingual-E5-largeを使用し、埋め込みの精度を向上させた。
  • 回答生成時間は実用可能なレベル、精度はhallucinationが多少あるレベル。
  • モデルのダウンロードおよびホームページのロード以外ローカルで行えるため、ChatGPTみたいな外部サービスが使用できない企業でも使用可能。

対象としたホームページ

今回も前回(https://qiita.com/bluesky-firmament/items/669b716c6db9b02b49fd) と同じくCFDライブラリのOpenFOAMのユーザーガイドを使用しました。(https://doc.cfd.direct/openfoam/user-guide-v10/contents)
加えてESI版のユーザーガイドも加えてあります(https://www.openfoam.com/documentation/guides/latest/doc/openfoam-guide-physical-modelling.html)
今回も使用したホームページについて最後に添付します。

使用したパッケージ&モデル

llama2:llama-2-13b-chat.ggmlv3.q4_K_M.bin
Embedding model:intfloat/multilingual-e5-large
llama-cpp-python==0.1.77
langchain==0.0.247

環境

Windows11
Corei7-12700
RTX 3060 12GB
NVIDIA-SMI 527.41 Driver Version: 527.41 CUDA Version: 12.0

FAISSインデックスの作成

faiss_index_create.py
from langchain.llms import LlamaCpp
from langchain.document_loaders import UnstructuredURLLoader
from langchain.text_splitter import CharacterTextSplitter
from langchain.vectorstores import FAISS
from langchain.retrievers.document_compressors import EmbeddingsFilter
from langchain.embeddings import HuggingFaceEmbeddings

def main():
    urls = file_load()
    embeddings = HuggingFaceEmbeddings(model_name="intfloat/multilingual-e5-large")
    embeddings_filter = EmbeddingsFilter(embeddings=embeddings, similarity_threshold=0.76)
    loader = UnstructuredURLLoader(urls=urls)
    documents = loader.load()
    text_splitter = CharacterTextSplitter(chunk_size=300, chunk_overlap=30, separator="\n")
    texts = text_splitter.split_documents(documents)
    print(len(texts))
    index = FAISS.from_documents(
    documents=texts,
    embedding=HuggingFaceEmbeddings(model_name="intfloat/multilingual-e5-large"),
    )
    index.save_local("faiss_index")
    docsearch = FAISS.load_local("faiss_index", embeddings)

def file_load():
    urls = []
    with open("./page_list.txt", "r", encoding="utf8") as f:
        for line in f:
            urls.append(line.rstrip("\n"))
    return urls

if(__name__ == "__main__"):
    main()

page_list.txtに保存してあるurlからUnstructuredURLLoaderで内容を読みこみ、CharacterTextSplitterでチャンクに分割します。今回は16421個のチャンクに分割しています。

llama2を使用したQ&Aボット

OF_QA_bot.py
from langchain.llms import LlamaCpp
from langchain.chains import RetrievalQA
from langchain.memory import ChatMessageHistory
from langchain.vectorstores import FAISS
from langchain.schema import messages_from_dict, messages_to_dict
from langchain.retrievers import ContextualCompressionRetriever
from langchain.retrievers.document_compressors import EmbeddingsFilter
from langchain.embeddings import HuggingFaceEmbeddings
import os
import json

model_path = "../llama2/llama-2-13b-chat.ggmlv3.q4_K_M.bin"

stop = [
    '[end of text] ',
]
n_gpu_layers = 32  # Change this value based on your model and your GPU VRAM pool.
n_batch = 512  # Should be between 1 and n_ctx, consider the amount of VRAM in your GPU.
llm = LlamaCpp(
    model_path=model_path,
    input={"temperature": 0.0, "max_length": 8192, "top_p": 1},
    n_gpu_layers=n_gpu_layers,
    n_batch=n_batch,
    stop=stop,
    verbose=True,
    n_ctx=4096
)


def main():
    # llm = llm
    embeddings = HuggingFaceEmbeddings(model_name="intfloat/multilingual-e5-large")
    embeddings_filter = EmbeddingsFilter(embeddings=embeddings, similarity_threshold=0.70)
    if(os.path.exists("./faiss_index") == False):
        exit("db is not found. create new db.")
    docsearch = FAISS.load_local("faiss_index", embeddings)
    compression_retriever = ContextualCompressionRetriever(base_compressor=embeddings_filter, base_retriever=docsearch.as_retriever())
    qa = RetrievalQA.from_chain_type(llm=llm, chain_type="stuff", retriever=compression_retriever)
    history = ChatMessageHistory()
    while True:
        input_txt = input("質問を入力してください: ")
        if(input_txt == "exit"):
            break
        elif(input_txt == ""):
            continue
        response = qa.run(query=input_txt)
        print(response)
        history.add_user_message(input_txt)
        history.add_ai_message(response)

    with open("./of_history.json", "w", encoding="utf8") as f:
        dicts = messages_to_dict(history.messages)
        formater = json.dumps(dicts, indent=2, ensure_ascii=False)
        print(formater)
        f.write(formater)

if(__name__ == "__main__"):
    main()

n_gpu_layers:GPUにオフロードする重み層の数
n_batch:トークンを並列処理する数
n_ctx:contextのトークン数(https://github.com/langchain-ai/langchain/issues/3751)
ContextualCompressionRetrieverの説明は以下の記事が詳しいので省略します。
https://zenn.dev/laiso/articles/f5e5c616e128a7

結果

llama2の日本語性能が微妙なので、すべて英語で質問しています(めっちゃ下手な英語ですが)
圧縮性流れ、非圧縮性流れ、定常状態、過渡的な流れのそれぞれの場合に使用するソルバーを適切に選んでいる印象です。

応答例&応答時間

時間:
llama_print_timings: load time = 4209.65 ms
llama_print_timings: sample time = 7.42 ms / 47 runs ( 0.16 ms per token, 6331.67 tokens per second)
llama_print_timings: prompt eval time = 4209.57 ms / 354 tokens ( 11.89 ms per token, 84.09 tokens per second)
llama_print_timings: eval time = 7357.54 ms / 46 runs ( 159.95 ms per token, 6.25 tokens per second)
llama_print_timings: total time = 11657.04 ms

質問: BlockMeshについて詳しく説明してください。

AIの回答: BlockMeshはメッシュ生成に使用されるツールで、ドメインの幾何学をより小さな六面体のブロックに分解することで機能します。これらのブロックのエッジは直線、弧、またはスプラインにすることができます。

時間:
llama_print_timings: load time = 4209.65 ms
llama_print_timings: sample time = 23.27 ms / 145 runs ( 0.16 ms per token, 6230.13 tokens per second)
llama_print_timings: prompt eval time = 3765.96 ms / 400 tokens ( 9.41 ms per token, 106.21 tokens per second)
llama_print_timings: eval time = 23921.63 ms / 144 runs ( 166.12 ms per token, 6.02 tokens per second)
llama_print_timings: total time = 27964.95 ms

質問: 定常流で車体周りの非圧縮流を解析したい場合、PIMPLEFOAMを使用すべきですか?

AIの回答: 圧縮性流れの定常状態解析のためにPIMPLEFOAMを使用するべきではありません。PIMPLEFOAMは、乱流のシミュレーションのためのPISOとSIMPLEアルゴリズムを組み合わせたオープンソースのCFDツールボックスです。それは非圧縮流の定常状態解析をサポートしていません。

時間:
llama_print_timings: load time = 4209.65 ms
llama_print_timings: sample time = 9.16 ms / 59 runs ( 0.16 ms per token, 6440.34 tokens per second)
llama_print_timings: prompt eval time = 3128.99 ms / 347 tokens ( 9.02 ms per token, 110.90 tokens per second)
llama_print_timings: eval time = 9067.61 ms / 58 runs ( 156.34 ms per token, 6.40 tokens per second)
llama_print_timings: total time = 12305.74 ms

質問: OpenFOAMの圧縮流のソルバーについて説明してもらえますか?

AIの回答: OpenFOAMで圧縮流をシミュレートするためのいくつかのソルバーがあります。これには、超音速、rhoCentralFoam、rhoPimpleFoamなどが含まれます。さらに、一般的なオプションとソースコードのリンクについての詳細情報が提供されています。

llama_print_timings: load time = 4209.65 ms
llama_print_timings: sample time = 12.40 ms / 81 runs ( 0.15 ms per token, 6533.31 tokens per second)
llama_print_timings: prompt eval time = 2940.53 ms / 310 tokens ( 9.49 ms per token, 105.42 tokens per second)
llama_print_timings: eval time = 12323.73 ms / 80 runs ( 154.05 ms per token, 6.49 tokens per second)
llama_print_timings: total time = 15409.48 ms

質問: ロケットの外部流れを計算する場合、どのソルバーを使用しますか?マッハ2の流れに最も適したソルバーを使用してください。

AIの回答: ロケットの外部流れを計算するためには、'combustion'ソルバーを推奨します。これは、燃焼プロセスをシミュレートするために特別に設計されており、高マッハ数の流れを処理できます。ただし、燃焼ソルバーはまだ建設中で、完全に安定していない可能性があるため、アップデートのために後で再度チェックする必要があります。

時間:
llama_print_timings: load time = 4209.65 ms
llama_print_timings: sample time = 1.05 ms / 7 runs ( 0.15 ms per token, 6653.99 tokens per second)
llama_print_timings: prompt eval time = 3538.70 ms / 398 tokens ( 8.89 ms per token, 112.47 tokens per second)
llama_print_timings: eval time = 830.54 ms / 6 runs ( 138.42 ms per token, 7.22 tokens per second)
llama_print_timings: total time = 4380.52 ms

質問: ロケットの外部流れを計算する場合、どのソルバーを使用しますか?最も適したソルバーを使用してください。

AIの回答: XiEngineFoamを使用します。

時間:
llama_print_timings: load time = 4209.65 ms
llama_print_timings: sample time = 10.93 ms / 71 runs ( 0.15 ms per token, 6495.29 tokens per second)
llama_print_timings: prompt eval time = 2780.79 ms / 293 tokens ( 9.49 ms per token, 105.37 tokens per second)
llama_print_timings: eval time = 10265.05 ms / 70 runs ( 146.64 ms per token, 6.82 tokens per second)
llama_print_timings: total time = 13171.69 ms

質問: ロケットの外部流れを計算する場合、分析のためにSimpleFOAMを使用すべきですか?

AIの回答: いいえ、SimpleFOAMはロケットの外部流れをシミュレートする能力を持っていません。

時間:
llama_print_timings: load time = 4209.65 ms
llama_print_timings: sample time = 4.97 ms / 33 runs ( 0.15 ms per token, 6635.83 tokens per second)
llama_print_timings: prompt eval time = 2930.36 ms / 323 tokens ( 9.07 ms per token, 110.23 tokens per second)
llama_print_timings: eval time = 4636.21 ms / 32 runs ( 144.88 ms per token, 6.90 tokens per second)
llama_print_timings: total time = 7625.85 ms

質問: 音速前の流れが非圧縮の場合、SimpleFOAMを使ってロケットの外部流れを解析できますか?

AIの回答: はい、音速前の流れが非圧縮である場合では、SimpleFOAMを使ってロケットの外部流れを解析することができます。

OF_history.json
[
  {
    "type": "human",
    "data": {
      "content": "Could you explain about blockMesh in detail?",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "ai",
    "data": {
      "content": " Sure! BlockMesh is a tool used for mesh generation and it works by decomposing the domain geometry into smaller hexahedral blocks. The edges of these blocks can be straight lines, arcs or splines.",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "human",
    "data": {
      "content": "If I want to analyze the uncompressed flow around a car body in stedy flow and temperature, should I use PIMPLEFOAM?",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "ai",
    "data": {
      "content": " No, you should not use PIMPLEFOAM for steady-state analysis of compressible flow. PIMPLEFOAM is an open-source CFD toolbox that combines the PISO and SIMPLE algorithms for turbulent flow simulation. It does not support steady-state incompressible flow analysis.\n\nContext:\n\n* The user is looking to analyze the uncompressed flow around a car body in steady state and temperature.\n* The user has access to OpenFOAM and is considering using PIMPLEFOAM for the simulation.\n* The OpenFOAM User Guide provides information on the PIMPLEFOAM application and its capabilities.",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "human",
    "data": {
      "content": "Could you explain about solver of compressibleflow in OpenFOAM?",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "ai",
    "data": {
      "content": " Yes, there are several solvers available for simulating compressible flow in OpenFOAM. These include transonic, rhoCentralFoam, and rhoPimpleFoam. Additionally, there is further information provided on common options and the source code links.",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "human",
    "data": {
      "content": "If you comupute external flow of rockets, What solver will you use? you should use most suitable solver for mach 2 flow.",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "ai",
    "data": {
      "content": " To compute the external flow of rockets, I would recommend using the 'combustion' solver in OpenFOAM, as it is specifically designed for simulating combustion processes and can handle high-Mach number flows. It is important to note that the combustion solver is still under construction and may not be fully stable, so you should check again later for updates.",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "human",
    "data": {
      "content": "If you comupute external flow of rockets, What solver will you use? you should use most suitable solver.",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "ai",
    "data": {
      "content": " XiEngineFoam",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "human",
    "data": {
      "content": "If you comupute external flow of rockets, should I use SimpleFOAM for analysis?",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "ai",
    "data": {
      "content": " No. SimpleFOAM doesn't have the ability to simulate the external flow of rockets.\n\nHint: Look at the Table of Contents and see if there is any mention of external flow in the context of rocket engines.\n\nDo you know if SimpleFOAM is appropriate for simulating the external flow of rockets?",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "human",
    "data": {
      "content": "Can SimpleFOAM be used to analyze the external flow of a rocket if the flow is incompressible before the speed of sound?",
      "additional_kwargs": {},
      "example": false
    }
  },
  {
    "type": "ai",
    "data": {
      "content": " Yes, SimpleFOAM can be used to analyze the external flow of a rocket even if the flow is incompressible before the speed of sound.",
      "additional_kwargs": {},
      "example": false
    }
  }
]

参考文献

Q&Aボットに使用したホームページのリスト

page_list.txt
https://doc.cfd.direct/openfoam/user-guide-v10/index
https://doc.cfd.direct/openfoam/user-guide-v10/introduction
https://doc.cfd.direct/openfoam/user-guide-v10/bookindex
https://doc.cfd.direct/openfoam/user-guide-v10/introduction#x3-20001
https://doc.cfd.direct/openfoam/user-guide-v10/tutorials#x4-30002
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-40002.1
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-50002.1.1
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-110002.1.2
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-120002.1.3
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-130002.1.4
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-190002.1.5
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-270002.1.6
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-310002.1.7
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-340002.1.8
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-370002.1.9
https://doc.cfd.direct/openfoam/user-guide-v10/cavity#x5-380002.1.10
https://doc.cfd.direct/openfoam/user-guide-v10/platehole#x6-390002.2
https://doc.cfd.direct/openfoam/user-guide-v10/platehole#x6-400002.2.1
https://doc.cfd.direct/openfoam/user-guide-v10/platehole#x6-450002.2.2
https://doc.cfd.direct/openfoam/user-guide-v10/platehole#x6-460002.2.3
https://doc.cfd.direct/openfoam/user-guide-v10/platehole#x6-470002.2.4
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-510002.3
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-520002.3.1
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-530002.3.2
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-540002.3.3
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-550002.3.4
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-560002.3.5
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-570002.3.6
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-580002.3.7
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-590002.3.8
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-600002.3.9
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-610002.3.10
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-620002.3.11
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-630002.3.12
https://doc.cfd.direct/openfoam/user-guide-v10/dambreak#x7-640002.3.13
https://doc.cfd.direct/openfoam/user-guide-v10/applications#x8-650003
https://doc.cfd.direct/openfoam/user-guide-v10/programming-language-openfoam#x9-660003.1
https://doc.cfd.direct/openfoam/user-guide-v10/programming-language-openfoam#x9-670003.1.1
https://doc.cfd.direct/openfoam/user-guide-v10/programming-language-openfoam#x9-680003.1.2
https://doc.cfd.direct/openfoam/user-guide-v10/programming-language-openfoam#x9-690003.1.3
https://doc.cfd.direct/openfoam/user-guide-v10/programming-language-openfoam#x9-700003.1.4
https://doc.cfd.direct/openfoam/user-guide-v10/compiling-applications#x10-710003.2
https://doc.cfd.direct/openfoam/user-guide-v10/compiling-applications#x10-720003.2.1
https://doc.cfd.direct/openfoam/user-guide-v10/compiling-applications#x10-730003.2.2
https://doc.cfd.direct/openfoam/user-guide-v10/compiling-applications#x10-790003.2.3
https://doc.cfd.direct/openfoam/user-guide-v10/compiling-applications#x10-800003.2.4
https://doc.cfd.direct/openfoam/user-guide-v10/compiling-applications#x10-810003.2.5
https://doc.cfd.direct/openfoam/user-guide-v10/compiling-applications#x10-820003.2.6
https://doc.cfd.direct/openfoam/user-guide-v10/compiling-applications#x10-830003.2.7
https://doc.cfd.direct/openfoam/user-guide-v10/running-applications#x11-840003.3
https://doc.cfd.direct/openfoam/user-guide-v10/running-applications-parallel#x12-850003.4
https://doc.cfd.direct/openfoam/user-guide-v10/running-applications-parallel#x12-860003.4.1
https://doc.cfd.direct/openfoam/user-guide-v10/running-applications-parallel#x12-870003.4.2
https://doc.cfd.direct/openfoam/user-guide-v10/running-applications-parallel#x12-910003.4.3
https://doc.cfd.direct/openfoam/user-guide-v10/running-applications-parallel#x12-920003.4.4
https://doc.cfd.direct/openfoam/user-guide-v10/running-applications-parallel#x12-930003.4.5
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-960003.5
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-970003.5.1
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-980003.5.2
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-990003.5.3
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-1000003.5.4
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-1010003.5.5
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-1020003.5.6
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-1030003.5.7
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-1040003.5.8
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-1050003.5.9
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-1060003.5.10
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-1070003.5.11
https://doc.cfd.direct/openfoam/user-guide-v10/standard-solvers#x13-1080003.5.12
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1090003.6
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1100003.6.1
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1110003.6.2
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1120003.6.3
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1130003.6.4
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1140003.6.5
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1150003.6.6
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1160003.6.7
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1170003.6.8
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1180003.6.9
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1190003.6.10
https://doc.cfd.direct/openfoam/user-guide-v10/standard-utilities#x14-1200003.6.11
https://doc.cfd.direct/openfoam/user-guide-v10/cases#x15-1210004
https://doc.cfd.direct/openfoam/user-guide-v10/case-file-structure#x16-1220004.1
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1230004.2
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1240004.2.1
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1250004.2.2
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1260004.2.3
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1270004.2.4
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1280004.2.5
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1290004.2.6
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1300004.2.7
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1310004.2.8
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1320004.2.9
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1330004.2.10
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1340004.2.11
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1350004.2.12
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1360004.2.13
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1370004.2.14
https://doc.cfd.direct/openfoam/user-guide-v10/basic-file-format#x17-1380004.2.15
https://doc.cfd.direct/openfoam/user-guide-v10/global-settings#x18-1390004.3
https://doc.cfd.direct/openfoam/user-guide-v10/global-settings#x18-1400004.3.1
https://doc.cfd.direct/openfoam/user-guide-v10/controldict#x19-1410004.4
https://doc.cfd.direct/openfoam/user-guide-v10/controldict#x19-1420004.4.1
https://doc.cfd.direct/openfoam/user-guide-v10/controldict#x19-1430004.4.2
https://doc.cfd.direct/openfoam/user-guide-v10/controldict#x19-1440004.4.3
https://doc.cfd.direct/openfoam/user-guide-v10/fvschemes#x20-1450004.5
https://doc.cfd.direct/openfoam/user-guide-v10/fvschemes#x20-1460004.5.1
https://doc.cfd.direct/openfoam/user-guide-v10/fvschemes#x20-1470004.5.2
https://doc.cfd.direct/openfoam/user-guide-v10/fvschemes#x20-1480004.5.3
https://doc.cfd.direct/openfoam/user-guide-v10/fvschemes#x20-1490004.5.4
https://doc.cfd.direct/openfoam/user-guide-v10/fvschemes#x20-1500004.5.5
https://doc.cfd.direct/openfoam/user-guide-v10/fvschemes#x20-1510004.5.6
https://doc.cfd.direct/openfoam/user-guide-v10/fvsolution#x21-1520004.6
https://doc.cfd.direct/openfoam/user-guide-v10/fvsolution#x21-1530004.6.1
https://doc.cfd.direct/openfoam/user-guide-v10/fvsolution#x21-1580004.6.2
https://doc.cfd.direct/openfoam/user-guide-v10/fvsolution#x21-1590004.6.3
https://doc.cfd.direct/openfoam/user-guide-v10/fvsolution#x21-1600004.6.4
https://doc.cfd.direct/openfoam/user-guide-v10/fvsolution#x21-1610004.6.5
https://doc.cfd.direct/openfoam/user-guide-v10/case-management#x22-1620004.7
https://doc.cfd.direct/openfoam/user-guide-v10/case-management#x22-1630004.7.1
https://doc.cfd.direct/openfoam/user-guide-v10/case-management#x22-1640004.7.2
https://doc.cfd.direct/openfoam/user-guide-v10/case-management#x22-1650004.7.3
https://doc.cfd.direct/openfoam/user-guide-v10/case-management#x22-1660004.7.4
https://doc.cfd.direct/openfoam/user-guide-v10/mesh#x23-1670005
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-description#x24-1680005.1
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-description#x24-1690005.1.1
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-description#x24-1740005.1.2
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-description#x24-1750005.1.3
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-description#x24-1760005.1.4
https://doc.cfd.direct/openfoam/user-guide-v10/boundaries#x25-1770005.2
https://doc.cfd.direct/openfoam/user-guide-v10/boundaries#x25-1780005.2.1
https://doc.cfd.direct/openfoam/user-guide-v10/boundaries#x25-1790005.2.2
https://doc.cfd.direct/openfoam/user-guide-v10/boundaries#x25-1800005.2.3
https://doc.cfd.direct/openfoam/user-guide-v10/blockmesh#x26-1850005.3
https://doc.cfd.direct/openfoam/user-guide-v10/blockmesh#x26-1860005.3.1
https://doc.cfd.direct/openfoam/user-guide-v10/blockmesh#x26-1920005.3.2
https://doc.cfd.direct/openfoam/user-guide-v10/blockmesh#x26-1930005.3.3
https://doc.cfd.direct/openfoam/user-guide-v10/blockmesh#x26-1940005.3.4
https://doc.cfd.direct/openfoam/user-guide-v10/blockmesh#x26-1950005.3.5
https://doc.cfd.direct/openfoam/user-guide-v10/blockmesh#x26-1960005.3.6
https://doc.cfd.direct/openfoam/user-guide-v10/snappyhexmesh#x27-1970005.4
https://doc.cfd.direct/openfoam/user-guide-v10/snappyhexmesh#x27-1980005.4.1
https://doc.cfd.direct/openfoam/user-guide-v10/snappyhexmesh#x27-1990005.4.2
https://doc.cfd.direct/openfoam/user-guide-v10/snappyhexmesh#x27-2000005.4.3
https://doc.cfd.direct/openfoam/user-guide-v10/snappyhexmesh#x27-2010005.4.4
https://doc.cfd.direct/openfoam/user-guide-v10/snappyhexmesh#x27-2020005.4.5
https://doc.cfd.direct/openfoam/user-guide-v10/snappyhexmesh#x27-2030005.4.6
https://doc.cfd.direct/openfoam/user-guide-v10/snappyhexmesh#x27-2040005.4.7
https://doc.cfd.direct/openfoam/user-guide-v10/snappyhexmesh#x27-2050005.4.8
https://doc.cfd.direct/openfoam/user-guide-v10/snappyhexmesh#x27-2060005.4.9
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-conversion#x28-2070005.5
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-conversion#x28-2080005.5.1
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-conversion#x28-2090005.5.2
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-conversion#x28-2170005.5.3
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-conversion#x28-2180005.5.4
https://doc.cfd.direct/openfoam/user-guide-v10/mesh-conversion#x28-2190005.5.5
https://doc.cfd.direct/openfoam/user-guide-v10/mapfields#x29-2200005.6
https://doc.cfd.direct/openfoam/user-guide-v10/mapfields#x29-2210005.6.1
https://doc.cfd.direct/openfoam/user-guide-v10/mapfields#x29-2220005.6.2
https://doc.cfd.direct/openfoam/user-guide-v10/mapfields#x29-2230005.6.3
https://doc.cfd.direct/openfoam/user-guide-v10/postprocessing#x30-2240006
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2250006.1
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2260006.1.1
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2270006.1.2
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2280006.1.3
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2290006.1.4
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2300006.1.5
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2330006.1.6
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2350006.1.7
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2370006.1.8
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2380006.1.9
https://doc.cfd.direct/openfoam/user-guide-v10/paraview#x31-2390006.1.10
https://doc.cfd.direct/openfoam/user-guide-v10/post-processing-cli#x32-2400006.2
https://doc.cfd.direct/openfoam/user-guide-v10/post-processing-cli#x32-2410006.2.1
https://doc.cfd.direct/openfoam/user-guide-v10/post-processing-cli#x32-2570006.2.2
https://doc.cfd.direct/openfoam/user-guide-v10/post-processing-cli#x32-2580006.2.3
https://doc.cfd.direct/openfoam/user-guide-v10/post-processing-cli#x32-2590006.2.4
https://doc.cfd.direct/openfoam/user-guide-v10/graphs-monitoring#x33-2600006.3
https://doc.cfd.direct/openfoam/user-guide-v10/graphs-monitoring#x33-2610006.3.1
https://doc.cfd.direct/openfoam/user-guide-v10/graphs-monitoring#x33-2620006.3.2
https://doc.cfd.direct/openfoam/user-guide-v10/graphs-monitoring#x33-2630006.3.3
https://doc.cfd.direct/openfoam/user-guide-v10/graphs-monitoring#x33-2640006.3.4
https://doc.cfd.direct/openfoam/user-guide-v10/post-processing-third-party#x34-2650006.4
https://doc.cfd.direct/openfoam/user-guide-v10/post-processing-third-party#x34-2660006.4.1
https://doc.cfd.direct/openfoam/user-guide-v10/models#x35-2690007
https://doc.cfd.direct/openfoam/user-guide-v10/thermophysical#x36-2700007.1
https://doc.cfd.direct/openfoam/user-guide-v10/thermophysical#x36-2710007.1.1
https://doc.cfd.direct/openfoam/user-guide-v10/thermophysical#x36-2720007.1.2
https://doc.cfd.direct/openfoam/user-guide-v10/thermophysical#x36-2730007.1.3
https://doc.cfd.direct/openfoam/user-guide-v10/thermophysical#x36-2740007.1.4
https://doc.cfd.direct/openfoam/user-guide-v10/thermophysical#x36-2750007.1.5
https://doc.cfd.direct/openfoam/user-guide-v10/thermophysical#x36-2760007.1.6
https://doc.cfd.direct/openfoam/user-guide-v10/thermophysical#x36-2770007.1.7
https://doc.cfd.direct/openfoam/user-guide-v10/turbulence#x37-2780007.2
https://doc.cfd.direct/openfoam/user-guide-v10/turbulence#x37-2790007.2.1
https://doc.cfd.direct/openfoam/user-guide-v10/turbulence#x37-2820007.2.2
https://doc.cfd.direct/openfoam/user-guide-v10/turbulence#x37-2850007.2.3
https://doc.cfd.direct/openfoam/user-guide-v10/turbulence#x37-2860007.2.4
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2870007.3
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2880007.3.1
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2890007.3.2
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2900007.3.3
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2910007.3.4
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2920007.3.5
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2930007.3.6
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2940007.3.7
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2950007.3.8
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2960007.3.9
https://doc.cfd.direct/openfoam/user-guide-v10/transport-rheology#x38-2970007.3.10
https://www.openfoam.com/documentation/guides/latest/doc/openfoam-guide-physical-modelling.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-linear-eddy-viscosity-models.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-k-epsilon.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-k-epsilon-phit-f.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-k-kl-omega.html
https://www.openfoam.com/documentation/guides/latest/man/acousticFoam.html
https://www.openfoam.com/documentation/guides/latest/man/acousticFoam.html
https://www.openfoam.com/documentation/guides/latest/man/adiabaticFlameT.html
https://www.openfoam.com/documentation/guides/latest/man/adjointOptimisationFoam.html
https://www.openfoam.com/documentation/guides/latest/man/adjointShapeOptimizationFoam.html
https://www.openfoam.com/documentation/guides/latest/man/ansysToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/applyBoundaryLayer.html
https://www.openfoam.com/documentation/guides/latest/man/attachMesh.html
https://www.openfoam.com/documentation/guides/latest/man/autoPatch.html
https://www.openfoam.com/documentation/guides/latest/man/blockMesh.html
https://www.openfoam.com/documentation/guides/latest/man/boundaryFoam.html
https://www.openfoam.com/documentation/guides/latest/man/boxTurb.html
https://www.openfoam.com/documentation/guides/latest/man/buoyantBoussinesqPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/buoyantBoussinesqSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/buoyantPbePimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/buoyantPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/buoyantSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/cartesian2DMesh.html
https://www.openfoam.com/documentation/guides/latest/man/cartesianMesh.html
https://www.openfoam.com/documentation/guides/latest/man/cavitatingDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/cavitatingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/cfx4ToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/changeDictionary.html
https://www.openfoam.com/documentation/guides/latest/man/checkFaMesh.html
https://www.openfoam.com/documentation/guides/latest/man/checkMesh.html
https://www.openfoam.com/documentation/guides/latest/man/checkSurfaceMesh.html
https://www.openfoam.com/documentation/guides/latest/man/chemFoam.html
https://www.openfoam.com/documentation/guides/latest/man/chemkinToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/chtMultiRegionFoam.html
https://www.openfoam.com/documentation/guides/latest/man/chtMultiRegionSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/chtMultiRegionTwoPhaseEulerFoam.html
https://www.openfoam.com/documentation/guides/latest/man/coalChemistryFoam.html
https://www.openfoam.com/documentation/guides/latest/man/coldEngineFoam.html
https://www.openfoam.com/documentation/guides/latest/man/collapseEdges.html
https://www.openfoam.com/documentation/guides/latest/man/combinePatchFaces.html
https://www.openfoam.com/documentation/guides/latest/man/compressibleInterDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/compressibleInterFilmFoam.html
https://www.openfoam.com/documentation/guides/latest/man/compressibleInterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/compressibleInterIsoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/compressibleMultiphaseInterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/compressiblePbeTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/computeMoments.html
https://www.openfoam.com/documentation/guides/latest/man/computeSensitivities.html
https://www.openfoam.com/documentation/guides/latest/man/copySurfaceParts.html
https://www.openfoam.com/documentation/guides/latest/man/createBaffles.html
https://www.openfoam.com/documentation/guides/latest/man/createBoxTurb.html
https://www.openfoam.com/documentation/guides/latest/man/createExternalCoupledPatchGeometry.html
https://www.openfoam.com/documentation/guides/latest/man/createPatch.html
https://www.openfoam.com/documentation/guides/latest/man/createZeroDirectory.html
https://www.openfoam.com/documentation/guides/latest/man/cumulativeDisplacement.html
https://www.openfoam.com/documentation/guides/latest/man/datToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/decomposePar.html
https://www.openfoam.com/documentation/guides/latest/man/deformedGeom.html
https://www.openfoam.com/documentation/guides/latest/man/denseAGFoam.html
https://www.openfoam.com/documentation/guides/latest/man/diluteVdfTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/dnsFoam.html
https://www.openfoam.com/documentation/guides/latest/man/DPMDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/DPMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/driftFluxFoam.html
https://www.openfoam.com/documentation/guides/latest/man/dsmcFoam.html
https://www.openfoam.com/documentation/guides/latest/man/dsmcInitialise.html
https://www.openfoam.com/documentation/guides/latest/man/electrostaticFoam.html
https://www.openfoam.com/documentation/guides/latest/man/engineCompRatio.html
https://www.openfoam.com/documentation/guides/latest/man/engineFoam.html
https://www.openfoam.com/documentation/guides/latest/man/engineSwirl.html
https://www.openfoam.com/documentation/guides/latest/man/equilibriumCO.html
https://www.openfoam.com/documentation/guides/latest/man/equilibriumFlameT.html
https://www.openfoam.com/documentation/guides/latest/man/explicitRhoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/extrude2DMesh.html
https://www.openfoam.com/documentation/guides/latest/man/extrudeEdgesInto2DSurface.html
https://www.openfoam.com/documentation/guides/latest/man/extrudeMesh.html
https://www.openfoam.com/documentation/guides/latest/man/extrudeToRegionMesh.html
https://www.openfoam.com/documentation/guides/latest/man/faceAgglomerate.html
https://www.openfoam.com/documentation/guides/latest/man/faParkerFukushimaFoam.html
https://www.openfoam.com/documentation/guides/latest/man/faSavageHutterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/financialFoam.html
https://www.openfoam.com/documentation/guides/latest/man/fireFoam.html
https://www.openfoam.com/documentation/guides/latest/man/fireToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/flattenMesh.html
https://www.openfoam.com/documentation/guides/latest/man/FLMAToSurface.html
https://www.openfoam.com/documentation/guides/latest/man/fluent3DMeshToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/fluentMeshToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/FMSToSurface.html
https://www.openfoam.com/documentation/guides/latest/man/FMSToVTK.html
https://www.openfoam.com/documentation/guides/latest/man/foamDataToFluent.html
https://www.openfoam.com/documentation/guides/latest/man/foamDictionary.html
https://www.openfoam.com/documentation/guides/latest/man/foamFormatConvert.html
https://www.openfoam.com/documentation/guides/latest/man/foamHasLibrary.html
https://www.openfoam.com/documentation/guides/latest/man/foamHelp.html
https://www.openfoam.com/documentation/guides/latest/man/foamListRegions.html
https://www.openfoam.com/documentation/guides/latest/man/foamListTimes.html
https://www.openfoam.com/documentation/guides/latest/man/foamMeshToFluent.html
https://www.openfoam.com/documentation/guides/latest/man/foamRestoreFields.html
https://www.openfoam.com/documentation/guides/latest/man/foamToEnsight.html
https://www.openfoam.com/documentation/guides/latest/man/foamToFireMesh.html
https://www.openfoam.com/documentation/guides/latest/man/foamToGMV.html
https://www.openfoam.com/documentation/guides/latest/man/foamToStarMesh.html
https://www.openfoam.com/documentation/guides/latest/man/foamToSurface.html
https://www.openfoam.com/documentation/guides/latest/man/foamToTetDualMesh.html
https://www.openfoam.com/documentation/guides/latest/man/foamToVTK.html
https://www.openfoam.com/documentation/guides/latest/man/foamUpgradeCyclics.html
https://www.openfoam.com/documentation/guides/latest/man/foamyHexMesh.html
https://www.openfoam.com/documentation/guides/latest/man/foamyQuadMesh.html
https://www.openfoam.com/documentation/guides/latest/man/gambitToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/generateBoundaryLayers.html
https://www.openfoam.com/documentation/guides/latest/man/generateMoments.html
https://www.openfoam.com/documentation/guides/latest/man/gmshToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/gridToSTL.html
https://www.openfoam.com/documentation/guides/latest/man/icoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/icoReactingMultiphaseInterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/icoUncoupledKinematicParcelDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/icoUncoupledKinematicParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/ideasUnvToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/importSurfaceAsSubset.html
https://www.openfoam.com/documentation/guides/latest/man/improveMeshQuality.html
https://www.openfoam.com/documentation/guides/latest/man/improveSymmetryPlanes.html
https://www.openfoam.com/documentation/guides/latest/man/insideCells.html
https://www.openfoam.com/documentation/guides/latest/man/interCondensatingEvaporatingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/interFoam.html
https://www.openfoam.com/documentation/guides/latest/man/interIsoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/interMixingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/interPhaseChangeDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/interPhaseChangeFoam.html
https://www.openfoam.com/documentation/guides/latest/man/kinematicParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/kivaToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/laplacianFoam.html
https://www.openfoam.com/documentation/guides/latest/man/liquidFilmFoam.html
https://www.openfoam.com/documentation/guides/latest/man/lumpedPointForces.html
https://www.openfoam.com/documentation/guides/latest/man/lumpedPointMovement.html
https://www.openfoam.com/documentation/guides/latest/man/lumpedPointZones.html
https://www.openfoam.com/documentation/guides/latest/man/magneticFoam.html
https://www.openfoam.com/documentation/guides/latest/man/makeFaMesh.html
https://www.openfoam.com/documentation/guides/latest/man/mapFields.html
https://www.openfoam.com/documentation/guides/latest/man/mapFieldsPar.html
https://www.openfoam.com/documentation/guides/latest/man/mdEquilibrationFoam.html
https://www.openfoam.com/documentation/guides/latest/man/mdFoam.html
https://www.openfoam.com/documentation/guides/latest/man/mdInitialise.html
https://www.openfoam.com/documentation/guides/latest/man/mergeMeshes.html
https://www.openfoam.com/documentation/guides/latest/man/mergeOrSplitBaffles.html
https://www.openfoam.com/documentation/guides/latest/man/mergeSurfacePatches.html
https://www.openfoam.com/documentation/guides/latest/man/meshToFPMA.html
https://www.openfoam.com/documentation/guides/latest/man/mhdFoam.html
https://www.openfoam.com/documentation/guides/latest/man/mirrorMesh.html
https://www.openfoam.com/documentation/guides/latest/man/mixingTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/mixtureAdiabaticFlameT.html
https://www.openfoam.com/documentation/guides/latest/man/modifyMesh.html
https://www.openfoam.com/documentation/guides/latest/man/moveDynamicMesh.html
https://www.openfoam.com/documentation/guides/latest/man/moveEngineMesh.html
https://www.openfoam.com/documentation/guides/latest/man/moveMesh.html
https://www.openfoam.com/documentation/guides/latest/man/MPPICDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/MPPICFoam.html
https://www.openfoam.com/documentation/guides/latest/man/MPPICInterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/mshToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/multiphaseEulerFoam.html
https://www.openfoam.com/documentation/guides/latest/man/multiphaseInterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/netgenNeutralToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/noise.html
https://www.openfoam.com/documentation/guides/latest/man/nonNewtonianIcoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/objToVTK.html
https://www.openfoam.com/documentation/guides/latest/man/oneWayCoupledVdfTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/orientFaceZone.html
https://www.openfoam.com/documentation/guides/latest/man/acousticFoam.html
https://www.openfoam.com/documentation/guides/latest/man/adiabaticFlameT.html
https://www.openfoam.com/documentation/guides/latest/man/adjointOptimisationFoam.html
https://www.openfoam.com/documentation/guides/latest/man/adjointShapeOptimizationFoam.html
https://www.openfoam.com/documentation/guides/latest/man/ansysToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/applyBoundaryLayer.html
https://www.openfoam.com/documentation/guides/latest/man/attachMesh.html
https://www.openfoam.com/documentation/guides/latest/man/autoPatch.html
https://www.openfoam.com/documentation/guides/latest/man/blockMesh.html
https://www.openfoam.com/documentation/guides/latest/man/boundaryFoam.html
https://www.openfoam.com/documentation/guides/latest/man/boxTurb.html
https://www.openfoam.com/documentation/guides/latest/man/buoyantBoussinesqPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/buoyantBoussinesqSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/buoyantPbePimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/buoyantPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/buoyantSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/cartesian2DMesh.html
https://www.openfoam.com/documentation/guides/latest/man/cartesianMesh.html
https://www.openfoam.com/documentation/guides/latest/man/cavitatingDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/cavitatingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/cfx4ToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/changeDictionary.html
https://www.openfoam.com/documentation/guides/latest/man/checkFaMesh.html
https://www.openfoam.com/documentation/guides/latest/man/checkMesh.html
https://www.openfoam.com/documentation/guides/latest/man/checkSurfaceMesh.html
https://www.openfoam.com/documentation/guides/latest/man/chemFoam.html
https://www.openfoam.com/documentation/guides/latest/man/chemkinToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/chtMultiRegionFoam.html
https://www.openfoam.com/documentation/guides/latest/man/chtMultiRegionSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/chtMultiRegionTwoPhaseEulerFoam.html
https://www.openfoam.com/documentation/guides/latest/man/coalChemistryFoam.html
https://www.openfoam.com/documentation/guides/latest/man/coldEngineFoam.html
https://www.openfoam.com/documentation/guides/latest/man/collapseEdges.html
https://www.openfoam.com/documentation/guides/latest/man/combinePatchFaces.html
https://www.openfoam.com/documentation/guides/latest/man/compressibleInterDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/compressibleInterFilmFoam.html
https://www.openfoam.com/documentation/guides/latest/man/compressibleInterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/compressibleInterIsoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/compressibleMultiphaseInterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/compressiblePbeTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/computeMoments.html
https://www.openfoam.com/documentation/guides/latest/man/computeSensitivities.html
https://www.openfoam.com/documentation/guides/latest/man/copySurfaceParts.html
https://www.openfoam.com/documentation/guides/latest/man/createBaffles.html
https://www.openfoam.com/documentation/guides/latest/man/createBoxTurb.html
https://www.openfoam.com/documentation/guides/latest/man/createExternalCoupledPatchGeometry.html
https://www.openfoam.com/documentation/guides/latest/man/createPatch.html
https://www.openfoam.com/documentation/guides/latest/man/createZeroDirectory.html
https://www.openfoam.com/documentation/guides/latest/man/cumulativeDisplacement.html
https://www.openfoam.com/documentation/guides/latest/man/datToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/decomposePar.html
https://www.openfoam.com/documentation/guides/latest/man/deformedGeom.html
https://www.openfoam.com/documentation/guides/latest/man/denseAGFoam.html
https://www.openfoam.com/documentation/guides/latest/man/diluteVdfTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/dnsFoam.html
https://www.openfoam.com/documentation/guides/latest/man/DPMDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/DPMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/driftFluxFoam.html
https://www.openfoam.com/documentation/guides/latest/man/dsmcFoam.html
https://www.openfoam.com/documentation/guides/latest/man/dsmcInitialise.html
https://www.openfoam.com/documentation/guides/latest/man/electrostaticFoam.html
https://www.openfoam.com/documentation/guides/latest/man/engineCompRatio.html
https://www.openfoam.com/documentation/guides/latest/man/engineFoam.html
https://www.openfoam.com/documentation/guides/latest/man/engineSwirl.html
https://www.openfoam.com/documentation/guides/latest/man/equilibriumCO.html
https://www.openfoam.com/documentation/guides/latest/man/equilibriumFlameT.html
https://www.openfoam.com/documentation/guides/latest/man/explicitRhoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/extrude2DMesh.html
https://www.openfoam.com/documentation/guides/latest/man/extrudeEdgesInto2DSurface.html
https://www.openfoam.com/documentation/guides/latest/man/extrudeMesh.html
https://www.openfoam.com/documentation/guides/latest/man/extrudeToRegionMesh.html
https://www.openfoam.com/documentation/guides/latest/man/faceAgglomerate.html
https://www.openfoam.com/documentation/guides/latest/man/faParkerFukushimaFoam.html
https://www.openfoam.com/documentation/guides/latest/man/faSavageHutterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/financialFoam.html
https://www.openfoam.com/documentation/guides/latest/man/fireFoam.html
https://www.openfoam.com/documentation/guides/latest/man/fireToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/flattenMesh.html
https://www.openfoam.com/documentation/guides/latest/man/FLMAToSurface.html
https://www.openfoam.com/documentation/guides/latest/man/fluent3DMeshToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/fluentMeshToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/FMSToSurface.html
https://www.openfoam.com/documentation/guides/latest/man/FMSToVTK.html
https://www.openfoam.com/documentation/guides/latest/man/foamDataToFluent.html
https://www.openfoam.com/documentation/guides/latest/man/foamDictionary.html
https://www.openfoam.com/documentation/guides/latest/man/foamFormatConvert.html
https://www.openfoam.com/documentation/guides/latest/man/foamHasLibrary.html
https://www.openfoam.com/documentation/guides/latest/man/foamHelp.html
https://www.openfoam.com/documentation/guides/latest/man/foamListRegions.html
https://www.openfoam.com/documentation/guides/latest/man/foamListTimes.html
https://www.openfoam.com/documentation/guides/latest/man/foamMeshToFluent.html
https://www.openfoam.com/documentation/guides/latest/man/foamRestoreFields.html
https://www.openfoam.com/documentation/guides/latest/man/foamToEnsight.html
https://www.openfoam.com/documentation/guides/latest/man/foamToFireMesh.html
https://www.openfoam.com/documentation/guides/latest/man/foamToGMV.html
https://www.openfoam.com/documentation/guides/latest/man/foamToStarMesh.html
https://www.openfoam.com/documentation/guides/latest/man/foamToSurface.html
https://www.openfoam.com/documentation/guides/latest/man/foamToTetDualMesh.html
https://www.openfoam.com/documentation/guides/latest/man/foamToVTK.html
https://www.openfoam.com/documentation/guides/latest/man/foamUpgradeCyclics.html
https://www.openfoam.com/documentation/guides/latest/man/foamyHexMesh.html
https://www.openfoam.com/documentation/guides/latest/man/foamyQuadMesh.html
https://www.openfoam.com/documentation/guides/latest/man/gambitToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/generateBoundaryLayers.html
https://www.openfoam.com/documentation/guides/latest/man/generateMoments.html
https://www.openfoam.com/documentation/guides/latest/man/gmshToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/gridToSTL.html
https://www.openfoam.com/documentation/guides/latest/man/icoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/icoReactingMultiphaseInterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/icoUncoupledKinematicParcelDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/icoUncoupledKinematicParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/ideasUnvToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/importSurfaceAsSubset.html
https://www.openfoam.com/documentation/guides/latest/man/improveMeshQuality.html
https://www.openfoam.com/documentation/guides/latest/man/improveSymmetryPlanes.html
https://www.openfoam.com/documentation/guides/latest/man/insideCells.html
https://www.openfoam.com/documentation/guides/latest/man/interCondensatingEvaporatingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/interFoam.html
https://www.openfoam.com/documentation/guides/latest/man/interIsoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/interMixingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/interPhaseChangeDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/interPhaseChangeFoam.html
https://www.openfoam.com/documentation/guides/latest/man/kinematicParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/kivaToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/laplacianFoam.html
https://www.openfoam.com/documentation/guides/latest/man/liquidFilmFoam.html
https://www.openfoam.com/documentation/guides/latest/man/lumpedPointForces.html
https://www.openfoam.com/documentation/guides/latest/man/lumpedPointMovement.html
https://www.openfoam.com/documentation/guides/latest/man/lumpedPointZones.html
https://www.openfoam.com/documentation/guides/latest/man/magneticFoam.html
https://www.openfoam.com/documentation/guides/latest/man/makeFaMesh.html
https://www.openfoam.com/documentation/guides/latest/man/mapFields.html
https://www.openfoam.com/documentation/guides/latest/man/mapFieldsPar.html
https://www.openfoam.com/documentation/guides/latest/man/mdEquilibrationFoam.html
https://www.openfoam.com/documentation/guides/latest/man/mdFoam.html
https://www.openfoam.com/documentation/guides/latest/man/mdInitialise.html
https://www.openfoam.com/documentation/guides/latest/man/mergeMeshes.html
https://www.openfoam.com/documentation/guides/latest/man/mergeOrSplitBaffles.html
https://www.openfoam.com/documentation/guides/latest/man/mergeSurfacePatches.html
https://www.openfoam.com/documentation/guides/latest/man/meshToFPMA.html
https://www.openfoam.com/documentation/guides/latest/man/mhdFoam.html
https://www.openfoam.com/documentation/guides/latest/man/mirrorMesh.html
https://www.openfoam.com/documentation/guides/latest/man/mixingTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/mixtureAdiabaticFlameT.html
https://www.openfoam.com/documentation/guides/latest/man/modifyMesh.html
https://www.openfoam.com/documentation/guides/latest/man/moveDynamicMesh.html
https://www.openfoam.com/documentation/guides/latest/man/moveEngineMesh.html
https://www.openfoam.com/documentation/guides/latest/man/moveMesh.html
https://www.openfoam.com/documentation/guides/latest/man/MPPICDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/MPPICFoam.html
https://www.openfoam.com/documentation/guides/latest/man/MPPICInterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/mshToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/multiphaseEulerFoam.html
https://www.openfoam.com/documentation/guides/latest/man/multiphaseInterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/netgenNeutralToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/noise.html
https://www.openfoam.com/documentation/guides/latest/man/nonNewtonianIcoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/objToVTK.html
https://www.openfoam.com/documentation/guides/latest/man/oneWayCoupledVdfTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/orientFaceZone.html
https://www.openfoam.com/documentation/guides/latest/man/overBuoyantPimpleDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overCompressibleInterDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overInterDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overInterPhaseChangeDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overLaplacianDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overPimpleDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overPotentialFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overRhoPimpleDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overRhoSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/particleTracks.html
https://www.openfoam.com/documentation/guides/latest/man/patchesToSubsets.html
https://www.openfoam.com/documentation/guides/latest/man/patchSummary.html
https://www.openfoam.com/documentation/guides/latest/man/pbeFoam.html
https://www.openfoam.com/documentation/guides/latest/man/pbeTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/pdfPlot.html
https://www.openfoam.com/documentation/guides/latest/man/PDRblockMesh.html
https://www.openfoam.com/documentation/guides/latest/man/PDRFoam.html
https://www.openfoam.com/documentation/guides/latest/man/PDRMesh.html
https://www.openfoam.com/documentation/guides/latest/man/PDRsetFields.html
https://www.openfoam.com/documentation/guides/latest/man/pimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/pisoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/plot3dToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/pMesh.html
https://www.openfoam.com/documentation/guides/latest/man/polydisperseBubbleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/polyDualMesh.html
https://www.openfoam.com/documentation/guides/latest/man/porousSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/postChannel.html
https://www.openfoam.com/documentation/guides/latest/man/postProcess.html
https://www.openfoam.com/documentation/guides/latest/man/potentialFoam.html
https://www.openfoam.com/documentation/guides/latest/man/potentialFreeSurfaceDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/potentialFreeSurfaceFoam.html
https://www.openfoam.com/documentation/guides/latest/man/preparePar.html
https://www.openfoam.com/documentation/guides/latest/man/profilingSummary.html
https://www.openfoam.com/documentation/guides/latest/man/reactingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/reactingHeterogenousParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/reactingMultiphaseEulerFoam.html
https://www.openfoam.com/documentation/guides/latest/man/reactingParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/reactingTwoPhaseEulerFoam.html
https://www.openfoam.com/documentation/guides/latest/man/reconstructPar.html
https://www.openfoam.com/documentation/guides/latest/man/reconstructParMesh.html
https://www.openfoam.com/documentation/guides/latest/man/reconstructPointDistribution.html
https://www.openfoam.com/documentation/guides/latest/man/redistributePar.html
https://www.openfoam.com/documentation/guides/latest/man/refineHexMesh.html
https://www.openfoam.com/documentation/guides/latest/man/refinementLevel.html
https://www.openfoam.com/documentation/guides/latest/man/refineMesh.html
https://www.openfoam.com/documentation/guides/latest/man/refineWallLayer.html
https://www.openfoam.com/documentation/guides/latest/man/releaseAreaMapping.html
https://www.openfoam.com/documentation/guides/latest/man/removeFaces.html
https://www.openfoam.com/documentation/guides/latest/man/removeSurfaceFacets.html
https://www.openfoam.com/documentation/guides/latest/man/renumberMesh.html
https://www.openfoam.com/documentation/guides/latest/man/rhoCentralFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoPimpleAdiabaticFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoPorousSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoReactingBuoyantFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoReactingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rotateMesh.html
https://www.openfoam.com/documentation/guides/latest/man/scalarTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/scaleMesh.html
https://www.openfoam.com/documentation/guides/latest/man/scaleSurfaceMesh.html
https://www.openfoam.com/documentation/guides/latest/man/selectCells.html
https://www.openfoam.com/documentation/guides/latest/man/setAlphaField.html
https://www.openfoam.com/documentation/guides/latest/man/setExprBoundaryFields.html
https://www.openfoam.com/documentation/guides/latest/man/setExprFields.html
https://www.openfoam.com/documentation/guides/latest/man/setFields.html
https://www.openfoam.com/documentation/guides/latest/man/setSet.html
https://www.openfoam.com/documentation/guides/latest/man/setsToZones.html
https://www.openfoam.com/documentation/guides/latest/man/setTurbulenceFields.html
https://www.openfoam.com/documentation/guides/latest/man/shallowWaterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/simpleCoalParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/simpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/simpleReactingParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/simpleSprayFoam.html
https://www.openfoam.com/documentation/guides/latest/man/singleCellMesh.html
https://www.openfoam.com/documentation/guides/latest/man/slopeMesh.html
https://www.openfoam.com/documentation/guides/latest/man/smapToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/snappyHexMesh.html
https://www.openfoam.com/documentation/guides/latest/man/snappyRefineMesh.html
https://www.openfoam.com/documentation/guides/latest/man/solidDisplacementFoam.html
https://www.openfoam.com/documentation/guides/latest/man/solidEquilibriumDisplacementFoam.html
https://www.openfoam.com/documentation/guides/latest/man/solidFoam.html
https://www.openfoam.com/documentation/guides/latest/man/sonicDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/sonicFoam.html
https://www.openfoam.com/documentation/guides/latest/man/sonicLiquidFoam.html
https://www.openfoam.com/documentation/guides/latest/man/sphereSurfactantFoam.html
https://www.openfoam.com/documentation/guides/latest/man/splitCells.html
https://www.openfoam.com/documentation/guides/latest/man/splitMesh.html
https://www.openfoam.com/documentation/guides/latest/man/splitMeshRegions.html
https://www.openfoam.com/documentation/guides/latest/man/sprayDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/sprayFoam.html
https://www.openfoam.com/documentation/guides/latest/man/SRFPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/SRFSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/star4ToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/steadyParticleTracks.html
https://www.openfoam.com/documentation/guides/latest/man/stitchMesh.html
https://www.openfoam.com/documentation/guides/latest/man/subsetMesh.html
https://www.openfoam.com/documentation/guides/latest/man/subsetToPatch.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceAdd.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceBooleanFeatures.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceCheck.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceClean.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceCoarsen.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceConvert.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceFeatureConvert.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceFeatureEdges.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceFeatureExtract.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceFind.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceGenerateBoundingBox.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceHookUp.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceInertia.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceInflate.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceLambdaMuSmooth.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceMeshConvert.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceMeshExport.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceMeshExtract.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceMeshImport.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceMeshInfo.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceOrient.html
https://www.openfoam.com/documentation/guides/latest/man/surfacePatch.html
https://www.openfoam.com/documentation/guides/latest/man/surfacePointMerge.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceRedistributePar.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceRefineRedGreen.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceSplitByPatch.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceSplitByTopology.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceSplitNonManifolds.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceSubset.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceToFMS.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceToPatch.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceTransformPoints.html
https://www.openfoam.com/documentation/guides/latest/man/surfactantFoam.html
https://www.openfoam.com/documentation/guides/latest/man/temporalInterpolate.html
https://www.openfoam.com/documentation/guides/latest/man/tetgenToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/tetMesh.html
https://www.openfoam.com/documentation/guides/latest/man/thermoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/topoSet.html
https://www.openfoam.com/documentation/guides/latest/man/transformPoints.html
https://www.openfoam.com/documentation/guides/latest/man/twoLiquidMixingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/twoPhaseEulerFoam.html
https://www.openfoam.com/documentation/guides/latest/man/uncoupledKinematicParcelDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/uncoupledKinematicParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/vdfTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/viewFactorsGen.html
https://www.openfoam.com/documentation/guides/latest/man/vtkUnstructuredToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/wallFunctionTable.html
https://www.openfoam.com/documentation/guides/latest/man/writeActiveDesignVariables.html
https://www.openfoam.com/documentation/guides/latest/man/writeMeshObj.html
https://www.openfoam.com/documentation/guides/latest/man/writeMorpherCPs.html
https://www.openfoam.com/documentation/guides/latest/man/XiDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/XiEngineFoam.html
https://www.openfoam.com/documentation/guides/latest/man/XiFoam.html
https://www.openfoam.com/documentation/guides/latest/man/zipUpMesh.html
https://www.openfoam.com/documentation/guides/latest/man/overBuoyantPimpleDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overCompressibleInterDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overInterDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overInterPhaseChangeDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overLaplacianDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overPimpleDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overPotentialFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overRhoPimpleDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overRhoSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/overSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/particleTracks.html
https://www.openfoam.com/documentation/guides/latest/man/patchesToSubsets.html
https://www.openfoam.com/documentation/guides/latest/man/patchSummary.html
https://www.openfoam.com/documentation/guides/latest/man/pbeFoam.html
https://www.openfoam.com/documentation/guides/latest/man/pbeTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/pdfPlot.html
https://www.openfoam.com/documentation/guides/latest/man/PDRblockMesh.html
https://www.openfoam.com/documentation/guides/latest/man/PDRFoam.html
https://www.openfoam.com/documentation/guides/latest/man/PDRMesh.html
https://www.openfoam.com/documentation/guides/latest/man/PDRsetFields.html
https://www.openfoam.com/documentation/guides/latest/man/pimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/pisoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/plot3dToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/pMesh.html
https://www.openfoam.com/documentation/guides/latest/man/polydisperseBubbleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/polyDualMesh.html
https://www.openfoam.com/documentation/guides/latest/man/porousSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/postChannel.html
https://www.openfoam.com/documentation/guides/latest/man/postProcess.html
https://www.openfoam.com/documentation/guides/latest/man/potentialFoam.html
https://www.openfoam.com/documentation/guides/latest/man/potentialFreeSurfaceDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/potentialFreeSurfaceFoam.html
https://www.openfoam.com/documentation/guides/latest/man/preparePar.html
https://www.openfoam.com/documentation/guides/latest/man/profilingSummary.html
https://www.openfoam.com/documentation/guides/latest/man/reactingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/reactingHeterogenousParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/reactingMultiphaseEulerFoam.html
https://www.openfoam.com/documentation/guides/latest/man/reactingParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/reactingTwoPhaseEulerFoam.html
https://www.openfoam.com/documentation/guides/latest/man/reconstructPar.html
https://www.openfoam.com/documentation/guides/latest/man/reconstructParMesh.html
https://www.openfoam.com/documentation/guides/latest/man/reconstructPointDistribution.html
https://www.openfoam.com/documentation/guides/latest/man/redistributePar.html
https://www.openfoam.com/documentation/guides/latest/man/refineHexMesh.html
https://www.openfoam.com/documentation/guides/latest/man/refinementLevel.html
https://www.openfoam.com/documentation/guides/latest/man/refineMesh.html
https://www.openfoam.com/documentation/guides/latest/man/refineWallLayer.html
https://www.openfoam.com/documentation/guides/latest/man/releaseAreaMapping.html
https://www.openfoam.com/documentation/guides/latest/man/removeFaces.html
https://www.openfoam.com/documentation/guides/latest/man/removeSurfaceFacets.html
https://www.openfoam.com/documentation/guides/latest/man/renumberMesh.html
https://www.openfoam.com/documentation/guides/latest/man/rhoCentralFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoPimpleAdiabaticFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoPorousSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoReactingBuoyantFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoReactingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rhoSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/rotateMesh.html
https://www.openfoam.com/documentation/guides/latest/man/scalarTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/scaleMesh.html
https://www.openfoam.com/documentation/guides/latest/man/scaleSurfaceMesh.html
https://www.openfoam.com/documentation/guides/latest/man/selectCells.html
https://www.openfoam.com/documentation/guides/latest/man/setAlphaField.html
https://www.openfoam.com/documentation/guides/latest/man/setExprBoundaryFields.html
https://www.openfoam.com/documentation/guides/latest/man/setExprFields.html
https://www.openfoam.com/documentation/guides/latest/man/setFields.html
https://www.openfoam.com/documentation/guides/latest/man/setSet.html
https://www.openfoam.com/documentation/guides/latest/man/setsToZones.html
https://www.openfoam.com/documentation/guides/latest/man/setTurbulenceFields.html
https://www.openfoam.com/documentation/guides/latest/man/shallowWaterFoam.html
https://www.openfoam.com/documentation/guides/latest/man/simpleCoalParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/simpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/simpleReactingParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/simpleSprayFoam.html
https://www.openfoam.com/documentation/guides/latest/man/singleCellMesh.html
https://www.openfoam.com/documentation/guides/latest/man/slopeMesh.html
https://www.openfoam.com/documentation/guides/latest/man/smapToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/snappyHexMesh.html
https://www.openfoam.com/documentation/guides/latest/man/snappyRefineMesh.html
https://www.openfoam.com/documentation/guides/latest/man/solidDisplacementFoam.html
https://www.openfoam.com/documentation/guides/latest/man/solidEquilibriumDisplacementFoam.html
https://www.openfoam.com/documentation/guides/latest/man/solidFoam.html
https://www.openfoam.com/documentation/guides/latest/man/sonicDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/sonicFoam.html
https://www.openfoam.com/documentation/guides/latest/man/sonicLiquidFoam.html
https://www.openfoam.com/documentation/guides/latest/man/sphereSurfactantFoam.html
https://www.openfoam.com/documentation/guides/latest/man/splitCells.html
https://www.openfoam.com/documentation/guides/latest/man/splitMesh.html
https://www.openfoam.com/documentation/guides/latest/man/splitMeshRegions.html
https://www.openfoam.com/documentation/guides/latest/man/sprayDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/sprayFoam.html
https://www.openfoam.com/documentation/guides/latest/man/SRFPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/SRFSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/man/star4ToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/steadyParticleTracks.html
https://www.openfoam.com/documentation/guides/latest/man/stitchMesh.html
https://www.openfoam.com/documentation/guides/latest/man/subsetMesh.html
https://www.openfoam.com/documentation/guides/latest/man/subsetToPatch.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceAdd.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceBooleanFeatures.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceCheck.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceClean.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceCoarsen.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceConvert.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceFeatureConvert.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceFeatureEdges.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceFeatureExtract.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceFind.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceGenerateBoundingBox.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceHookUp.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceInertia.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceInflate.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceLambdaMuSmooth.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceMeshConvert.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceMeshExport.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceMeshExtract.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceMeshImport.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceMeshInfo.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceOrient.html
https://www.openfoam.com/documentation/guides/latest/man/surfacePatch.html
https://www.openfoam.com/documentation/guides/latest/man/surfacePointMerge.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceRedistributePar.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceRefineRedGreen.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceSplitByPatch.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceSplitByTopology.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceSplitNonManifolds.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceSubset.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceToFMS.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceToPatch.html
https://www.openfoam.com/documentation/guides/latest/man/surfaceTransformPoints.html
https://www.openfoam.com/documentation/guides/latest/man/surfactantFoam.html
https://www.openfoam.com/documentation/guides/latest/man/temporalInterpolate.html
https://www.openfoam.com/documentation/guides/latest/man/tetgenToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/tetMesh.html
https://www.openfoam.com/documentation/guides/latest/man/thermoFoam.html
https://www.openfoam.com/documentation/guides/latest/man/topoSet.html
https://www.openfoam.com/documentation/guides/latest/man/transformPoints.html
https://www.openfoam.com/documentation/guides/latest/man/twoLiquidMixingFoam.html
https://www.openfoam.com/documentation/guides/latest/man/twoPhaseEulerFoam.html
https://www.openfoam.com/documentation/guides/latest/man/uncoupledKinematicParcelDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/uncoupledKinematicParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/man/vdfTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/man/viewFactorsGen.html
https://www.openfoam.com/documentation/guides/latest/man/vtkUnstructuredToFoam.html
https://www.openfoam.com/documentation/guides/latest/man/wallFunctionTable.html
https://www.openfoam.com/documentation/guides/latest/man/writeActiveDesignVariables.html
https://www.openfoam.com/documentation/guides/latest/man/writeMeshObj.html
https://www.openfoam.com/documentation/guides/latest/man/writeMorpherCPs.html
https://www.openfoam.com/documentation/guides/latest/man/XiDyMFoam.html
https://www.openfoam.com/documentation/guides/latest/man/XiEngineFoam.html
https://www.openfoam.com/documentation/guides/latest/man/XiFoam.html
https://www.openfoam.com/documentation/guides/latest/man/zipUpMesh.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-linear-eddy-viscosity-models.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-non-linear-eddy-viscosity-models.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-reynolds-stress-transport-models.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-wall-modelling.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-les.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-des-k-omega-sst-iddes.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-des-k-omega-sst-ddes.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-des-k-omega-sst-des.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-des-k-omega-sst-iddes.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-des-spalart-allmaras-ddes.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-des-spalart-allmaras-des.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-des-spalart-allmaras-iddes.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-k-epsilon.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-k-epsilon-phit-f.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-k-kl-omega.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-k-omega-sst-lm.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-k-omega-sst.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-lien-leschziner.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-q-zeta.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-realizable-k-epsilon.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-rng-k-epsilon.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-spalart-allmaras.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-v2-f.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-lien-cubic-ke.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-shih-quadratic-ke.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-lrr.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-ras-ssg.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-les-dynamic-k-eqn.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-les-k-eqn.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-les-smagorinsky.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-turbulence-les-wale.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-bcs-constraint.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-bcs-derived-general.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-bcs-derived-inlet.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-bcs-derived-outlet.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-bcs-derived-wall.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-bcs-derived-coupled.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-basic.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-compressible.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-heat-transfer.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-multiphase.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-lagrangian-particle.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-discrete-methods.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-combustion.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-dns.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible-boundaryFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible-icoFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible-pimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible-pisoFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible-simpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-compressible-rhoCentralFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-compressible-rhoPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-compressible-rhoSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-heat-transfer-buoyantPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-heat-transfer-buoyantSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-heat-transfer-chtMultiRegionFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-multiphase-interFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-electro-magnetics.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-financial.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-stress-analysis.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-pressure-velocity-intro.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-simple.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-piso.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-pimple.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible-boundaryFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-heat-transfer-buoyantPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-heat-transfer-buoyantSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-combustion-chemFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-heat-transfer-chtMultiRegionFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-combustion-coldEngineFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-combustion-engineFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-combustion-fireFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible-icoFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-multiphase-interFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-basic-laplacianFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible-pimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible-pisoFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-basic-potentialFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-combustion-reactingFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-lagrangian-reactingParcelFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-compressible-rhoCentralFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-compressible-rhoPimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-compressible-rhoSimpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-basic-scalarTransportFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-incompressible-simpleFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-lagrangian-sprayFoam.html
https://www.openfoam.com/documentation/guides/latest/doc/guide-applications-solvers-combustion-XiFoam.html
10
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
11