nass-simscape/src/initializeGround.m
Thomas Dehaeze 3318694d53 Update all the initialization function
Generally, remove the unused parameters,
Remove the colors and other no important parameters.
2020-02-03 17:50:52 +01:00

9 lines
175 B
Matlab

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