Skip to content

Commit e987a99

Browse files
format
1 parent e0b1b6d commit e987a99

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
group:
18+
GROUP:
1919
- QA
2020
- Core
2121
version:

docs/pages.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pages = [
99
],
1010
"About Acausal Connections" => [
1111
"Theory" => "connectors/connections.md",
12-
"Sign Convention" => "connectors/sign_convention.md",
12+
"Sign Convention" => "connectors/sign_convention.md"
1313
],
1414
"API" => [
1515
"Basic Blocks" => "API/blocks.md",

src/Hydraulic/IsothermalCompressible/components.jl

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -495,20 +495,20 @@ See also [`FixedVolume`](@ref), [`DynamicVolume`](@ref)
495495
end
496496

497497
eqs = [
498-
# connectors
499-
port.p ~ p
500-
port.dm ~ dm
501-
flange.v * direction ~ dx
502-
flange.f * direction ~ -f
503-
504-
# differentials
505-
D(x) ~ dx
506-
D(rho) ~ drho
507-
508-
# physics
509-
rho ~ liquid_density(port, p)
510-
f ~ p * area
511-
dm ~ drho * x * area + rho * dx * area]
498+
# connectors
499+
port.p ~ p
500+
port.dm ~ dm
501+
flange.v * direction ~ dx
502+
flange.f * direction ~ -f
503+
504+
# differentials
505+
D(x) ~ dx
506+
D(rho) ~ drho
507+
508+
# physics
509+
rho ~ liquid_density(port, p)
510+
f ~ p * area
511+
dm ~ drho * x * area + rho * dx * area]
512512

513513
ODESystem(eqs, t, vars, pars; name, systems, defaults = [rho => liquid_density(port)])
514514
end

0 commit comments

Comments
 (0)