nass-simscape/src/initializeAxisc.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

22 lines
551 B
Matlab

function [axisc] = initializeAxisc()
axisc = struct();
% Structure
axisc.structure.density = 3400; % [kg/m3]
axisc.structure.STEP = './STEPS/axisc/axisc_structure.STEP';
% Wheel
axisc.wheel.density = 2700; % [kg/m3]
axisc.wheel.STEP = './STEPS/axisc/axisc_wheel.STEP';
% Mass
axisc.mass.density = 7800; % [kg/m3]
axisc.mass.STEP = './STEPS/axisc/axisc_mass.STEP';
% Gear
axisc.gear.density = 7800; % [kg/m3]
axisc.gear.STEP = './STEPS/axisc/axisc_gear.STEP';
save('./mat/stages.mat', 'axisc', '-append');