Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ jobs:
echo "figure.max_open_warning: 100" > matplotlibrc
export LD_LIBRARY_PATH=build/lib
find samples/python -type f -iname "*.py" \
-exec sh -c 'for n; do echo "$n" | tee -a results.txt && python3 "$n" >> results.txt || exit 1; done' sh {} +
-exec sh -c 'for n; do echo "$n" | tee -a results.txt && python3 -u "$n" >> results.txt || exit 1; done' sh {} +
env:
# The pyparsing ignore setting is due to a new warning introduced in Matplotlib==3.6.0
# Ignore NasaPoly2 warnings from n-hexane-NUIG-2015.yaml
Expand Down
9 changes: 5 additions & 4 deletions doc/sphinx/develop/reactor-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ reac = ct.IdealGasReactor(gas, clone=False)
sim = ct.ReactorNet([reac])
```

The `__init__` method of the Python {py:class}`ReactorNet` class calls
{ct}`ReactorNet::addReactor` for each {py:class}`Reactor` object provided in the list
supplied. When the first {ct}`Reactor` is added to the network, the {ct}`ReactorNet`
creates a new {ct}`Integrator` used to integrate the governing equations.
The constructor for the {py:class}`ReactorNet` class builds the network from the
provided list of {py:class}`Reactor` and {py:class}`ReactorSurface` objects and creates
a new {ct}`Integrator` used to integrate the governing equations. If there are
connections such as walls and mass flow controllers between different reactors, the
adjacent reactors are automatically added to the reactor network.

The {ct}`Integrator` class is Cantera's interface for ODE/DAE system integrators.
{ct}`Integrator` is a [polymorphic base class](http://www.cplusplus.com/doc/tutorial/polymorphism/);
Expand Down
304 changes: 0 additions & 304 deletions include/cantera/kinetics/ImplicitSurfChem.h

This file was deleted.

Loading
Loading