当前位置:网站首页>OpenFOAM:底层

OpenFOAM:底层

2022-06-25 07:34:00 weixin_42849849

OpenFOAM底层理解

路径: src/OpenFOAM/


底层容器类


容器类

containers/
├── Bits
│   ├── BitOps
│   ├── bitSet
│   └── PackedList
├── Circulators
│   ├── Circulator
│   ├── CirculatorBase
│   └── ConstCirculator
├── CompactLists
│   └── CompactListList
├── Dictionaries
│   ├── Dictionary
│   ├── DictionaryBase
│   ├── PtrDictionary
│   ├── PtrListDictionary
│   ├── UDictionary
│   └── UPtrDictionary
├── HashTables
│   ├── HashOps
│   ├── HashPtrTable
│   ├── HashSet
│   ├── HashTable
│   ├── HashTableFwd.H
│   ├── Map
│   └── PtrMap
├── Identifiers
│   └── LabelledItem
├── IndirectLists
│   ├── BiIndirectList
│   ├── IndirectList
│   ├── IndirectListBase
│   ├── IndirectListsFwd.H
│   ├── IndirectSubList
│   ├── SliceList
│   ├── SortList
│   └── UIndirectList
├── LinkedLists
│   ├── accessTypes
│   ├── linkTypes
│   └── user
├── Lists
│   ├── BinSum
│   ├── Distribution
│   ├── DynamicList
│   ├── FixedList
│   ├── Histogram
│   ├── List
│   ├── ListListOps
│   ├── ListOps
│   ├── policy
│   ├── SortableList
│   ├── SubList
│   ├── UList
│   └── UniformList
└── PtrLists
    ├── PtrDynList
    ├── PtrList
    ├── PtrListDetail
    ├── PtrListOps
    └── UPtrList



内存管理(memory)

OpenFOAM-v2112/src/OpenFOAM/memory
$ tree
.
├── autoPtr
│   ├── autoPtr.H
│   └── autoPtrI.H
├── PrecisionAdaptor
│   └── PrecisionAdaptor.H
├── refCount
│   └── refCount.H
├── refPtr
│   ├── refPtr.H
│   └── refPtrI.H
└── tmp
    ├── tmp.H
    ├── tmpI.H
    └── tmpNrc.H

原网站

版权声明
本文为[weixin_42849849]所创,转载请带上原文链接,感谢
https://blog.csdn.net/weixin_42849849/article/details/125424494