From 9aa48f230e6eff71800d74781464586480f3ded6 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Tue, 16 Jan 2024 09:19:36 -0600 Subject: [PATCH] Updating README to reflect new Model class --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6d1773..896d9b9 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,9 @@ Code: ```python import dagmc -groups = dagmc.Group.groups_from_file('dagmc.h5m') -print(groups) +model = dagmc.DAGModel('dagmc.h5m') + +print(model.groups) fuel_group = groups['mat:fuel']