nass-simscape/initialize/initializeGround.m

12 lines
249 B
Mathematica
Raw Normal View History

function [ground] = initializeGround()
%%
2018-06-16 22:57:54 +02:00
ground = struct();
ground.shape = [2, 2, 0.5]; % [m]
ground.density = 2800; % [kg/m3]
ground.color = [0.5, 0.5, 0.5];
2018-06-16 22:57:54 +02:00
%% Save
save('./mat/stages.mat', 'ground', '-append');
2018-06-16 22:57:54 +02:00
end