Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
LabProcesses.jl
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
Container registry
Model registry
Operate
Environments
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
processes
LabProcesses.jl
Commits
a1cb420b
Commit
a1cb420b
authored
7 years ago
by
Fredrik Bagge Carlson
Browse files
Options
Downloads
Patches
Plain Diff
Implement Parameters constructor for ETHHelicopter
parent
7144dbc5
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interface_implementations/eth_helicopter.jl
+9
-9
9 additions, 9 deletions
src/interface_implementations/eth_helicopter.jl
with
9 additions
and
9 deletions
src/interface_implementations/eth_helicopter.jl
+
9
−
9
View file @
a1cb420b
...
...
@@ -7,16 +7,16 @@
export
ETHHelicopter
,
ETHHelicopterSimulator
,
AbstractETHHelicopter
struct
ETHHelicopter
<:
PhysicalProcess
h
::
Float64
bias
::
Float64
stream
::
LabStream
measure1
::
AnalogInput10V
measure2
::
AnalogInput10V
control1
::
AnalogOutput10V
control2
::
AnalogOutput10V
@with_kw
struct
ETHHelicopter
<:
PhysicalProcess
h
::
Float64
=
0.05
bias
::
Float64
=
0.0
stream
::
LabStream
=
ComediStream
()
measure1
::
AnalogInput10V
=
AnalogInput10V
(
0
)
measure2
::
AnalogInput10V
=
AnalogInput10V
(
1
)
control1
::
AnalogOutput10V
=
AnalogOutput10V
(
0
)
control2
::
AnalogOutput10V
=
AnalogOutput10V
(
1
)
end
ETHHelicopter
()
=
ETHHelicopter
(
0.050
,
0.
,
ComediStream
(),
AnalogInput10V
(
0
),
AnalogInput10V
(
1
),
AnalogOutput10V
(
0
),
AnalogOutput10V
(
1
))
struct
ETHHelicopterSimulator
<:
SimulatedProcess
h
::
Float64
...
...
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