Skip to content

Commit

Permalink
docs: small typos fixed in the ISQ series
Browse files Browse the repository at this point in the history
  • Loading branch information
mpusz committed Oct 30, 2024
1 parent 185a6d1 commit 93e112f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/blog/posts/isq-part-1-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ In this series, we will describe:

- Part 1 - Introduction
- [Part 2 - Problems when ISQ is not used](isq-part-2-problems-when-isq-is-not-used.md)
- [Part 3 - Modelling ISQ](isq-part-3-modelling-isq.md)
- [Part 3 - Modeling ISQ](isq-part-3-modeling-isq.md)
- [Part 4 - Implementing ISQ](isq-part-4-implemeting-isq.md)

## Terms and Definitions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ library on just units or dimensions.

- [Part 1 - Introduction](isq-part-1-introduction.md)
- Part 2 - Problems when ISQ is not used
- [Part 3 - Modelling ISQ](isq-part-3-modelling-isq.md)
- [Part 3 - Modeling ISQ](isq-part-3-modeling-isq.md)
- [Part 4 - Implementing ISQ](isq-part-4-implemeting-isq.md)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ categories:
comments: true
---

# International System of Quantities (ISQ): Part 3 - Modelling ISQ
# International System of Quantities (ISQ): Part 3 - Modeling ISQ

The physical units libraries on the market typically only focus on modeling one or more systems
of units. However, as we have learned, this is not the only system kind to model. Another,
Expand All @@ -24,7 +24,7 @@ language.

- [Part 1 - Introduction](isq-part-1-introduction.md)
- [Part 2 - Problems when ISQ is not used](isq-part-2-problems-when-isq-is-not-used.md)
- Part 3 - Modelling ISQ
- Part 3 - Modeling ISQ
- [Part 4 - Implementing ISQ](isq-part-4-implemeting-isq.md)


Expand Down
4 changes: 2 additions & 2 deletions docs/blog/posts/isq-part-4-implemeting-isq.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ language, and we will point out some of the first issues that stand in our way.
<!-- more -->

In the previous article, we have already introduced a notion of quantity kind, provided `kind_of<>`
specifier, and described how it helps in the modelling of the system of units (e.g., SI).
specifier, and described how it helps in the modeling of the system of units (e.g., SI).

Now, it is time to see how we can implement hierarchies of quantities of the same kind.

Expand All @@ -25,7 +25,7 @@ Now, it is time to see how we can implement hierarchies of quantities of the sam

- [Part 1 - Introduction](isq-part-1-introduction.md)
- [Part 2 - Problems when ISQ is not used](isq-part-2-problems-when-isq-is-not-used.md)
- [Part 3 - Modelling ISQ](isq-part-3-modelling-isq.md)
- [Part 3 - Modeling ISQ](isq-part-3-modeling-isq.md)
- Part 4 - Implementing ISQ


Expand Down
10 changes: 5 additions & 5 deletions docs/blog/posts/isq-part-5-benefits.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ that does not use such abstraction to implement a units library.

In this article we will present how our ISQ model elegantly addresses the issues from the
[Part 2](isq-part-2-problems-when-isq-is-not-used.md) of our series that were not covered already
in [Part 3](isq-part-3-modelling-isq.md).
in [Part 3](isq-part-3-modeling-isq.md).

<!-- more -->

## Articles from this series

- [Part 1 - Introduction](isq-part-1-introduction.md)
- [Part 2 - Problems when ISQ is not used](isq-part-2-problems-when-isq-is-not-used.md)
- [Part 3 - Modelling ISQ](isq-part-3-modelling-isq.md)
- [Part 3 - Modeling ISQ](isq-part-3-modeling-isq.md)
- [Part 4 - Implementing ISQ](isq-part-4-implemeting-isq.md)
- Part 5 - Benefits

Expand Down Expand Up @@ -121,7 +121,7 @@ std::cout << price_usd << " -> " << price_euro << "\n";

## Derived quantities of the same dimension but different kinds

Up until now, the discussed issues did not actually require modelling of the ISQ. Introduction
Up until now, the discussed issues did not actually require modeling of the ISQ. Introduction
of physical dimensions would be enough, and indeed, this is what most of the libraries on the
market do. However, we have more interesting challenges to solve as well.

Expand Down Expand Up @@ -236,7 +236,7 @@ Box my_box3(horizontal_length(2 * m), isq::width(3 * m), isq::height(1 * m));
## Various kinds of dimensionless quantities

Most of the quantities hierarchies describe only one kind. There are some exceptions, though.
One of them is a [hierarchy of _dimensionless_ quantities](#modeling-a-hierarchy-of-kind-dimensionless).
One of them is a [hierarchy of _dimensionless_ quantities](isq-part-4-implemeting-isq.md#modeling-a-hierarchy-of-kind-dimensionless).
This tree defines quantities that denote:

- counts (_storage capacity_),
Expand Down Expand Up @@ -425,5 +425,5 @@ Transport Time is: 8.997726 s

## To be continued...

In the next part of this series, we will discuss the challenges and issues related to the modelling
In the next part of this series, we will discuss the challenges and issues related to the modeling
of the ISQ with a programming language.

0 comments on commit 93e112f

Please sign in to comment.