Skip to content

Commit 8d22640

Browse files
committed
fix typos
1 parent 46a4938 commit 8d22640

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/nomad_simulations/schema_packages/force_field.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ def normalize(self, archive, logger) -> None:
353353
except ValueError as e:
354354
logger.warning(
355355
f'Unable to derive tabulated forces from energies in {self.name},'
356-
f'Unkown error occurred in derivation: {e}'
356+
f'Unknown error occurred in derivation: {e}'
357357
)
358358

359359
if self.forces is not None and self.energies is None:
@@ -399,7 +399,7 @@ def normalize(self, archive, logger) -> None:
399399
except ValueError as e:
400400
logger.warning(
401401
f'Unable to derive tabulated energies from forces in {self.name},'
402-
f'Unkown error occurred in derivation: {e}'
402+
f'Unknown error occurred in derivation: {e}'
403403
)
404404

405405

src/nomad_simulations/schema_packages/workflow/equation_of_state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def normalize(self, archive: EntryArchive, logger: BoundLogger) -> None:
215215
)
216216
self.eos_fit.append(eos_fit)
217217
except Exception:
218-
logger.warning('EOS fit unsuccesful.')
218+
logger.warning('EOS fit unsuccessful.')
219219

220220

221221
class EquationOfState(ParallelWorkflow):

src/nomad_simulations/schema_packages/workflow/geometry_optimization.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class GeometryOptimizationMethod(SimulationWorkflowMethod):
3030
3131
| `"atomic"` | the atomic coordinates alone are updated |
3232
33-
| `"cell_volume"` | `"atomic"` + cell lattice paramters are updated isotropically |
33+
| `"cell_volume"` | `"atomic"` + cell lattice parameters are updated isotropically |
3434
3535
| `"cell_shape"` | `"cell_volume"` but without the isotropic constraint: all cell parameters are updated |
3636
@@ -42,7 +42,7 @@ class GeometryOptimizationMethod(SimulationWorkflowMethod):
4242
shape=[],
4343
description="""
4444
The method used for geometry optimization. Some known possible values are:
45-
`"steepest_descent"`, `"conjugant_gradient"`, `"low_memory_broyden_fletcher_goldfarb_shanno"`.
45+
`"steepest_descent"`, `"conjugate_gradient"`, `"low_memory_broyden_fletcher_goldfarb_shanno"`.
4646
""",
4747
)
4848

@@ -100,7 +100,7 @@ class GeometryOptimizationMethod(SimulationWorkflowMethod):
100100

101101

102102
class GeometryOptimizationResults(SimulationWorkflowResults):
103-
_label = 'Geometry optimiztation results'
103+
_label = 'Geometry optimization results'
104104

105105
n_steps = Quantity(
106106
type=int,

0 commit comments

Comments
 (0)