Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
Matlab Simulator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Avionics
Guidance Navigation and Control
Matlab Simulator
Commits
7ad0973a
Commit
7ad0973a
authored
1 year ago
by
Marco Marchesi
Browse files
Options
Downloads
Patches
Plain Diff
prelaunch euroc wind configuration
parent
109aed98
No related branches found
No related tags found
1 merge request
!19
Update main with the Gemini simulator development
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
simulator/configs/configWind.m
+12
-9
12 additions, 9 deletions
simulator/configs/configWind.m
with
12 additions
and
9 deletions
simulator/configs/configWind.m
+
12
−
9
View file @
7ad0973a
...
...
@@ -39,13 +39,16 @@ if conf.script == "simulator"
case
"multiplicative"
%%%%% Input wind
settings
.
wind
.
input
=
true
;
% Wind is generated for every altitude interpolating with the coefficient defined below
settings
.
wind
.
inputGround
=
3
;
% wind magnitude at the ground [m/s]
settings
.
wind
.
inputAlt
=
0
:
100
:
4500
;
% altitude vector [m]
settings
.
wind
.
inputMagnitude
=
[
3
*
ones
(
1
,
5
),
4
*
ones
(
1
,
4
),
5
*
ones
(
1
,
10
),
4
*
ones
(
1
,
12
),
5
*
ones
(
1
,
15
)];
settings
.
wind
.
inputAzimut
=
[
220
*
ones
(
1
,
2
),
200
*
ones
(
1
,
44
)];
windAltInput
=
[
0
300
420
520
620
720
820
920
1020
1100
1800
1900
2200
2300
2600
2700
2900
3200
3500
4000
4500
];
windMagInput
=
[
2
2
4
5
6
8
9
9
10
11
11
12
12
13
15
15
15
16
17
18
18
];
windAzInput
=
[
180
200
220
220
220
220
220
220
220
220
220
220
220
220
220
220
220
220
220
220
220
];
settings
.
wind
.
inputGround
=
2
;
% wind magnitude at the ground [m/s]
settings
.
wind
.
inputAlt
=
windAltInput
;
% altitude vector [m]
settings
.
wind
.
inputMagnitude
=
windMagInput
;
settings
.
wind
.
inputAzimut
=
windAzInput
;
settings
.
wind
.
inputMult
=
(
settings
.
wind
.
inputMagnitude
.
/
settings
.
wind
.
inputGround
-
1
)
*
100
;
settings
.
wind
.
input_uncertainty
=
[
10
,
10
];
% settings.wind.input_uncertainty = [a,b]; wind uncertanties:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment