Skip to content

Commit 918d577

Browse files
Merge pull request #273 from SciML/variable_t
Fix remaining variable t definition
2 parents eb42ce2 + 13e4e93 commit 918d577

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ModelingToolkitStandardLibrary"
22
uuid = "16a59e39-deab-5bd0-87e4-056b12336739"
33
authors = ["Chris Rackauckas and Julia Computing"]
4-
version = "2.5.0"
4+
version = "2.6.0"
55

66
[deps]
77
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"

docs/src/tutorials/rc_circuit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ connect pre-made components and simulate the model.
1010
using ModelingToolkit, OrdinaryDiffEq, Plots
1111
using ModelingToolkitStandardLibrary.Electrical
1212
using ModelingToolkitStandardLibrary.Blocks: Constant
13+
using ModelingToolkit: t_nounits as t
1314
1415
R = 1.0
1516
C = 1.0
1617
V = 1.0
17-
@variables t
1818
@named resistor = Resistor(R = R)
1919
@named capacitor = Capacitor(C = C, v = 0.0)
2020
@named source = Voltage()

0 commit comments

Comments
 (0)