Foffset is now default to False

This commit is contained in:
2020-03-17 11:22:57 +01:00
parent fab78b6527
commit f69edd6dce
10 changed files with 15 additions and 15 deletions

View File

@@ -311,7 +311,7 @@ The output =sample_pos= corresponds to the impact point of the X-ray.
#+begin_src matlab
arguments
args.type char {mustBeMember(args.type,{'rigid', 'flexible', 'none', 'modal-analysis', 'init'})} = 'flexible'
args.Foffset logical {mustBeNumericOrLogical} = true
args.Foffset logical {mustBeNumericOrLogical} = false
args.density (1,1) double {mustBeNumeric, mustBeNonnegative} = 2800 % Density [kg/m3]
args.x0 (1,1) double {mustBeNumeric} = 0 % Rest position of the Joint in the X direction [m]
args.y0 (1,1) double {mustBeNumeric} = 0 % Rest position of the Joint in the Y direction [m]
@@ -443,7 +443,7 @@ The Simscape model of the Translation stage consist of:
#+begin_src matlab
arguments
args.type char {mustBeMember(args.type,{'none', 'rigid', 'flexible', 'modal-analysis', 'init'})} = 'flexible'
args.Foffset logical {mustBeNumericOrLogical} = true
args.Foffset logical {mustBeNumericOrLogical} = false
end
#+end_src
@@ -597,7 +597,7 @@ The Simscape model of the Tilt stage is composed of:
#+begin_src matlab
arguments
args.type char {mustBeMember(args.type,{'none', 'rigid', 'flexible', 'modal-analysis', 'init'})} = 'flexible'
args.Foffset logical {mustBeNumericOrLogical} = true
args.Foffset logical {mustBeNumericOrLogical} = false
args.Ry_init (1,1) double {mustBeNumeric} = 0
end
#+end_src
@@ -738,7 +738,7 @@ The Simscape model of the Spindle is composed of:
#+begin_src matlab
arguments
args.type char {mustBeMember(args.type,{'none', 'rigid', 'flexible', 'modal-analysis', 'init'})} = 'flexible'
args.Foffset logical {mustBeNumericOrLogical} = true
args.Foffset logical {mustBeNumericOrLogical} = false
end
#+end_src
@@ -891,7 +891,7 @@ The =rz= structure is saved.
args.AP (3,1) double {mustBeNumeric} = zeros(3,1)
args.ARB (3,3) double {mustBeNumeric} = eye(3)
% Force that stiffness of each joint should apply at t=0
args.Foffset logical {mustBeNumericOrLogical} = true
args.Foffset logical {mustBeNumericOrLogical} = false
end
#+end_src
@@ -1361,7 +1361,7 @@ The Simscape model of the sample environment is composed of:
args.mass (1,1) double {mustBeNumeric, mustBePositive} = 50 % [kg]
args.freq (1,1) double {mustBeNumeric, mustBePositive} = 100 % [Hz]
args.offset (1,1) double {mustBeNumeric} = 0 % [m]
args.Foffset logical {mustBeNumericOrLogical} = true
args.Foffset logical {mustBeNumericOrLogical} = false
end
#+end_src