Skip to content

Commit acbcc57

Browse files
authored
Merge pull request #151 from IDAES/sep-typos
September 2025 Typos update
2 parents d7d6f23 + 64fd034 commit acbcc57

File tree

56 files changed

+61
-56
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+61
-56
lines changed

.github/workflows/core.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
branches:
66
- main
7+
schedule:
8+
# run Sundays at 3:00 am UTC (10 pm ET/7 pm PT)
9+
- cron: '0 3 * * 0'
710
repository_dispatch:
811
# to run this, send a POST API call at repos/IDAES/idaes-pse/dispatches with the specified event_type
912
# e.g. `gh repos/IDAES/idaes-pse/dispatches -F event_type=ci_run_tests`
@@ -59,7 +62,7 @@ jobs:
5962
pip install --progress-bar off black[jupyter]==24.3.0
6063
- name: Run Black to verify that the committed code is formatted
6164
run: |
62-
black --check .
65+
black --check --diff .
6366
6467
spell-check:
6568
name: Check Spelling

idaes_examples/archive/matopt/bimetallic_nanocluster_design_src.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
"cell_type": "markdown",
200200
"metadata": {},
201201
"source": [
202-
"To start, we inidcate that the choice to place an atom is fixed so that each canvas site is required to have an atom. This simplifies the problem significantly and results in a model that will seek to find the optimal labeling of metals on the nanocluster. "
202+
"To start, we indicate that the choice to place an atom is fixed so that each canvas site is required to have an atom. This simplifies the problem significantly and results in a model that will seek to find the optimal labeling of metals on the nanocluster. "
203203
]
204204
},
205205
{

idaes_examples/archive/matopt/surface_design_src.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
"source": [
212212
"First, we introduce two rules to fix special sites in the design. \n",
213213
"We fix the bottom two layers of atoms to exist, creating underlying bulk layers above which we will introduce nanostruced defets.\n",
214-
"We also fix an arbitrary atom in the top layer, breaking symmetry of the design space and resulting in easier to solve opitmization problems without actually restricting the designs that can be possibly represented. "
214+
"We also fix an arbitrary atom in the top layer, breaking symmetry of the design space and resulting in easier to solve optimization problems without actually restricting the designs that can be possibly represented. "
215215
]
216216
},
217217
{

idaes_examples/archive/power_gen/sofc/sofc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ def scale_flowsheet(m):
849849
m.fs.flash.control_volume.properties_out[0].mole_frac_comp, 1e1
850850
)
851851

852-
# hide missing scaling factor wornings
852+
# hide missing scaling factor warnings
853853
scaling_log = idaeslog.getLogger("idaes.core.util.scaling", level=idaeslog.ERROR)
854854

855855
iscale.calculate_scaling_factors(m)

idaes_examples/mod/hda/hda_ideal_VLE.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# at the URL "https://github.com/IDAES/idaes-pse".
1212
##############################################################################
1313
"""
14-
Example ideal parameter block for the VLE calucations for a
14+
Example ideal parameter block for the VLE calculations for a
1515
Benzene-Toluene-o-Xylene system.
1616
"""
1717

idaes_examples/mod/methanol/methanol_state_block_VLE.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# at the URL "https://github.com/IDAES/idaes-pse".
1212
##############################################################################
1313
"""
14-
Property package for ideal VLE calucations for the methanol synthesis problem.
14+
Property package for ideal VLE calculations for the methanol synthesis problem.
1515
Correlations from Turkay and Grossmann paper. See Latex files for details.
1616
"""
1717

idaes_examples/mod/power_gen/steam_turbine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ def _add_tags(self):
521521
format_string="{:.3f}",
522522
display_units=pyo.units.kJ / pyo.units.mol,
523523
)
524-
# Tag some important model quntities
524+
# Tag some important model quantities
525525
self.tags = iutil.ModelTagGroup()
526526
self.tags["power"] = iutil.ModelTag(
527527
doc=f"Steam turbine electric power output",

idaes_examples/mod/properties/reaction_property_example.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ def build(self):
140140
units=pyunits.mol / pyunits.m**3 / pyunits.s / pyunits.Pa**2,
141141
)
142142

143-
self.k_eq = Param(initialize=10000, doc="Equlibrium constant", units=pyunits.Pa)
143+
self.k_eq = Param(
144+
initialize=10000, doc="Equilibrium constant", units=pyunits.Pa
145+
)
144146

145147
self.reaction_rate = Var(
146148
self.params.rate_reaction_idx,

idaes_examples/notebooks/docs/flowsheets/hda_flowsheet_with_costing.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"\n",
4646
"- Import external pre-built steady-state flowsheets using the IDAES unit model library\n",
4747
"- Define and add costing blocks using the IDAES Process Costing Framework\n",
48-
"- Fomulate and solve a process economics optimization problem\n",
48+
"- Formulate and solve a process economics optimization problem\n",
4949
" - Defining an objective function\n",
5050
" - Setting variable bounds\n",
5151
" - Adding additional constraints \n",

idaes_examples/notebooks/docs/flowsheets/hda_flowsheet_with_costing_doc.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"\n",
4646
"- Import external pre-built steady-state flowsheets using the IDAES unit model library\n",
4747
"- Define and add costing blocks using the IDAES Process Costing Framework\n",
48-
"- Fomulate and solve a process economics optimization problem\n",
48+
"- Formulate and solve a process economics optimization problem\n",
4949
" - Defining an objective function\n",
5050
" - Setting variable bounds\n",
5151
" - Adding additional constraints \n",

0 commit comments

Comments
 (0)