Skip to content

Commit

Permalink
hide date, hydraulic diameter, reynolds number, kinematic viscosity
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlinxc committed Mar 14, 2024
1 parent c286408 commit 928c618
Show file tree
Hide file tree
Showing 9 changed files with 79 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to [https://stemformulas.com/](https://stemformulas.com/), the site with the goal of being the best place in the world to look for STEM-related formulas.

## Features:
- 84 formulas and counting (we gotta pump those numbers up)
- 87 formulas and counting (we gotta pump those numbers up)
- The search bar is in focus on site load for quick searching
- The / key can be used to open the search on any page
- LaTeX can be copied by clicking on it on any formula's page
Expand Down
2 changes: 1 addition & 1 deletion config/_default/params.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ enableCodeCopy = true
showRecent = false

[article]
showDate = true
showDate = false # set to true to add "added on" back
showDateUpdated = false
showAuthor = false
showBreadcrumbs = false
Expand Down
25 changes: 25 additions & 0 deletions content/formulas/hydraulic-diameter/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: Hydraulic Diameter
description: "The generalized characteristic length scale for flow in pipes."
summary: "The generalized characteristic length scale for flow in pipes."
tags: ["physics", "fluid dynamics"]
date: 2024-03-14
latex: D_h = \frac{4A_c}{P}
---

{{< katex >}}

The hydraulic diameter is a characteristic length scale for fluid flow in non-circular pipes. It replaces the diameter of a circular pipe with an equivalent diameter based on the cross-sectional area and wetted perimeter of the non-circular pipe. It is defined as:

$$ D_h = \frac{4A_c}{P} $$

Where:

- \\(D_h\\) is the hydraulic diameter,
- \\(A_c\\) is the cross-sectional area of the flow, and
- \\(P\\) is the wetted perimeter of the cross-section.

## Sources

- [Wikipedia](https://en.wikipedia.org/wiki/Hydraulic_diameter)
- [Engineering Toolbox](https://www.engineeringtoolbox.com/hydraulic-equivalent-diameter-d_458.html)
Binary file added content/formulas/hydraulic-diameter/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions content/formulas/kinematic-viscosity/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Kinematic Viscosity
description: "The ratio of the dynamic viscosity to the density of a fluid."
description: "The ratio of the dynamic viscosity to the density of a fluid."
tags: ["fluid mechanics", "physics"]
date: 2024-03-13
latex: "\nu = \\frac{\\mu}{\\rho}"
---

{{< katex >}}

Kinematic viscosity is the ratio of the viscosity (dynamic viscosity) to the density of a fluid:

$$ \nu = \frac{\mu}{\rho} $$

Where:

- \\(\nu\\) is the kinematic viscosity of the fluid,
- \\(\mu\\) is the dynamic viscosity of the fluid, and
- \\(\rho\\) is the density of the fluid.

## Sources

- [Wikipedia](https://en.wikipedia.org/wiki/Viscosity#Kinematic_viscosity)
Binary file added content/formulas/kinematic-viscosity/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions content/formulas/reynolds-number/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
title: Reynolds Number
description: "The dimensionless number representing the ratio of inertial and viscous forces."
summary: "The dimensionless number representing the ratio of inertial and viscous forces."
tags: ["physics", "fluid dynamics"]
date: 2024-03-14
latex: Re = \frac{\rho v L}{\mu}
---

{{< katex >}}

Reynolds number is a dimensionless quantity that is used to help predict flow patterns in different fluid flow situations. It is defined as the ratio of inertial forces to viscous forces and consequently quantifies the relative importance of these two types of forces for given flow conditions.

$$ Re = \frac{\rho v L}{\mu} $$

Where:

- \\(\small Re\\) is the Reynolds Number,
- \\(\small \rho\\) is the density of the fluid,
- \\(\small v\\) is the velocity of the fluid relative to the object,
- \\(\small L\\) is a characteristic linear dimension (such as diameter of a circular pipe, hydraulic diameter of a non-circular pipe, or length of a body), and
- \\(\small \mu\\) is the dynamic viscosity of the fluid.

## Sources

- [Wikipedia](https://en.wikipedia.org/wiki/Reynolds_number)
- [Engineering Toolbox](https://www.engineeringtoolbox.com/reynolds-number-d_237.html)
Binary file added content/formulas/reynolds-number/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion layouts/_default/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<h1 class="mt-0 text-4xl font-extrabold text-neutral-900 dark:text-neutral">
{{ .Title | emojify }}
</h1>
<div class="mt-8 mb-12 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
<div class="mt-4 mb-4 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
{{ partial "article-meta.html" (dict "context" . "scope" "single") }}
</div>
{{ with $feature }}
Expand Down

0 comments on commit 928c618

Please sign in to comment.