Skip to content

Commit a22b10b

Browse files
committed
Updated Canonical
1 parent 72108df commit a22b10b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
classdef Canonical < otp.cr3bp.CR3BPProblem
22
methods
33
function obj = Canonical(varargin)
4-
% Create the NRHO CR3BP problem object.
5-
% This is a trivial steady state orbit.
4+
% Create the Canonical CR3BP problem object.
5+
% This is a trivial steady state orbit oscillating around a lagrange point.
66

77
mu = 0.5;
88

9-
y0 = zeros(6, 1);
9+
y0 = [0; 0; 0; 0; 0; 1];
1010
tspan = [0, 10];
1111
params = otp.cr3bp.CR3BPParameters('Mu', mu, 'SoftFactor', 1e-3, varargin{:});
1212
obj = obj@otp.cr3bp.CR3BPProblem(tspan, y0, params);

0 commit comments

Comments
 (0)