Skip to content

Commit 5923c8b

Browse files
committed
changed variable names to unicode
1 parent 232afd0 commit 5923c8b

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

toolbox/+otp/+lorenz63/+presets/Canonical.m

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
classdef Canonical < otp.lorenz63.Lorenz63Problem
22
% Original Lorenz '63 preset presented in :cite:p:`Lor63`
3-
% which uses time span $t \in [0, 60]$, $\sigma = 10$, $\rho = 28$,
4-
% $\beta = 8/3$, and intial conditions $y_0 = [0, 1, 0]^T$.
3+
% which uses time span $t \in [0, 60]$, $σ = 10$, $ρ = 28$,
4+
% $β = 8/3$, and intial conditions $y_0 = [0, 1, 0]^T$.
55

66
methods
77
function obj = Canonical(varargin)
@@ -12,9 +12,9 @@
1212
% varargin
1313
% A variable number of name-value pairs. The accepted names are
1414
%
15-
% - ``sigma`` – Value of $\sigma$.
16-
% - ``rho`` – Value of $\rho$.
17-
% - ``beta`` – Value of $\beta$.
15+
% - ``sigma`` – Value of $σ$.
16+
% - ``rho`` – Value of $ρ$.
17+
% - ``beta`` – Value of $β$.
1818
%
1919

2020
p = inputParser;

toolbox/+otp/+lorenz63/+presets/LimitCycle.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
classdef LimitCycle < otp.lorenz63.Lorenz63Problem
22
% Lorenz '63 preset limit cycle, a non-chaotic preset, from :cite:p:`Str18`
3-
% which uses time span $t \in [0, 60]$, $\sigma = 10$, $\rho = 350$,
4-
% $\beta = 8/3$, and intial conditions $y_0 = [0, 1, 0]^T$.
3+
% which uses time span $t \in [0, 60]$, $σ = 10$, $ρ = 350$,
4+
% $β = 8/3$, and intial conditions $y_0 = [0, 1, 0]^T$.
55

66
methods
77
function obj = LimitCycle
88
% Create the LimitCycle Lorenz '63 problem object.
99
%
10-
10+
1111
sigma = 10;
1212
rho = 350;
1313
beta = 8/3;

toolbox/+otp/+lorenz63/+presets/Surprise.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
classdef Surprise < otp.lorenz63.Lorenz63Problem
22
% Lorenz '63 preset 'surprise' from :cite:p:`Str18` which uses time span $t \in [0, 60]$,
3-
% $\sigma = 10$, $\rho = 100$, $\beta = 8/3$, and intial conditions $y_0 = [2, 1, 1]^T$.
3+
% $σ = 10$, $ρ = 100$, $β = 8/3$, and intial conditions $y_0 = [2, 1, 1]^T$.
44

55
methods
66
function obj = Surprise

toolbox/+otp/+lorenz63/Lorenz63Problem.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
% The three variable Lorenz '63 problem :cite:p:`Lor63` of the form,
55
%
66
% $$
7-
% x' &= \sigma(y - x),\\
8-
% y' &= \rho x - y - xz,\\
9-
% z' &= xy - \beta z,
7+
% x' &= σ(y - x),\\
8+
% y' &= ρx - y - xz,\\
9+
% z' &= xy - βz,
1010
% $$
1111
%
1212
% exhibits chaotic behavior for certain values of the parameters.
@@ -23,7 +23,7 @@
2323
% +---------------------+-----------------------------------------------------------+
2424
% | Number of Variables | 3 |
2525
% +---------------------+-----------------------------------------------------------+
26-
% | Stiff | not typically, depending on $\sigma$, $\rho$, and $\beta$ |
26+
% | Stiff | not typically, depending on $σ$, $ρ$, and $β$ |
2727
% +---------------------+-----------------------------------------------------------+
2828
%
2929
% Example

0 commit comments

Comments
 (0)