Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,21 @@ private boolean isIonicComponent(String moleculeName) {
return ION_NAME_PATTERN.matcher(moleculeName).matches();
}

/**
* Get the component map containing GibbsComponent data for all loaded components.
*
* <p>
* This method provides protected access to the component database for subclasses that need to
* access thermodynamic properties such as element composition, heat capacity coefficients, and
* standard formation properties.
* </p>
*
* @return Map from component name (lowercase) to GibbsComponent
*/
protected Map<String, GibbsComponent> getComponentMap() {
return componentMap;
}

/**
* Constructor for GibbsReactor.
*
Expand Down
Loading
Loading