Skip to content

MetricTensorLabs/Logo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Logo


Metric Tensor Labs
Applied mathematics and advanced instrumentation for guidance, navigation, and control.

Numerical specifications

% Lorenz equations
x_dot = sigma * (y - x)
y_dot = x * (rho - z) - y
z_dot = x * y - beta * z

% System parameters 
rho = 28
beta = 8 / 3
sigma = 10

% Initial conditions
x = 1.0
y = 1.0
z = 20.0

% Simulation parameters
stop_time = 3.14
dt = 0.01

% Other specifications
% 1. Integrator  : RK4
% 2. Camera view : XZ plane
% 3. Axes        : Equal axes
% 4. Colour      : #0072bd RGB

About

Version control for logo of Metric Tensor Labs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages