Pydagmc
A convenience interface for examining and reassigning metadata in DAGMC models with PyMOAB
Install / Use
/learn @svalinn/PydagmcREADME
PyDAGMC
PyDAGMC is a Python interface for interacting with DAGMC .h5m files through the embedded topological relationships and metadata contained within. These interactions occur through a set of Python classes corresponding to DAGMC’s metadata Group (a grouping of volumes or surfaces), Volume, and Surface groupings in the mesh database. This interface is intended to provide a simple interface for obtaining information about DAGMC models, replacing significant boilerplate code required to perform the same queries with PyMOAB, the Python interface for MOAB itself.
PyDAGMC classes provide the ability to perform basic queries as properties of the class instances. These queries include:
- number of entities contained within a group
- volume and surface relationships
- number of triangles contained underneath any class instance
- triangle connectivity and coordinates underneath any class instance
- movement of volumes or surfaces into and out of groups
- VTK file generation for all triangles contained under any class instance
Example
Code:
import pydagmc
model = pydagmc.Model('dagmc.h5m')
group_dict = model.groups_by_name
print(group_dict)
fuel_group = groups['mat:fuel']
v1 = fuel_group.volumes_by_id[1]
print(v1)
new_group = pydagmc.Group.create(model, name="my_new_group", group_id=10)
print(new_group)
Output:
{'picked': Group 1, Name: picked
, 'mat:fuel': Group 2, Name: mat:fuel
Volume IDs:
[1 2]
, 'mat:Graveyard': Group 0, Name: mat:Graveyard
Volume IDs:
[6]
, 'mat:41': Group 0, Name: mat:41
Volume IDs:
[3]
, 'temp:300': Group 0, Name: temp:300
Volume IDs:
[1 2 3]
}
Volume 1, 4092 triangles
Group 10, Name: my_new_group
Code:
# move volume 1 from the fuel group to the group "mat:41"
group_dict['mat:fuel'].remove_set(v1)
group_dict['mat:41'].add_set(v1)
print(group_dict['mat:fuel'])
print(group_dict['mat:41'])
Output:
Group 2, Name: mat:fuel
Volume IDs:
[2]
Group 0, Name: mat:41
Volume IDs:
[1 3]
Related Skills
node-connect
337.4kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
83.2kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
337.4kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
83.2kCommit, push, and open a PR
