nass-simscape/initialize/initializeGround.m
Thomas Dehaeze 14259c7e67 [WIP] Change inputs.mat elements
Create new identification simulink
2018-10-12 18:17:03 +02:00

12 lines
249 B
Matlab

function [ground] = initializeGround()
%%
ground = struct();
ground.shape = [2, 2, 0.5]; % [m]
ground.density = 2800; % [kg/m3]
ground.color = [0.5, 0.5, 0.5];
%% Save
save('./mat/stages.mat', 'ground', '-append');
end