-
Notifications
You must be signed in to change notification settings - Fork 0
Sequence Diagram(sprint 2)
sangyeop edited this page Apr 21, 2026
·
9 revisions
sequenceDiagram
participant g@{"type" : "control"} as GCU
participant I as INS
participant s as SKR
loop Every 10ms
I->>+g: detect(위도, 경도, 고도, roll, pitch, yaw)
end
loop Every 120ms
s->>+g: detect(방위각(yaw), 고각(pitch))
end
sequenceDiagram
participant g@{"type" : "control"} as GCU
participant a as ACT
loop Every 1000ms
g->>+a: move (angle)
end
sequenceDiagram
participant u@{"type" : "control"} as UI
participant g as GCU
loop Every 10ms
u->>u: 타겟 이동
u->>+g: 목표 LOS
g-->>g: 항법 알고리즘
g-->>-u: act 제어 응답
u->>u: 화면 표시
end
u->>u: 결과창 표시
sequenceDiagram
participant u@{"type" : "control"} as UI
participant g as GCU
loop Every Nms
u->>u: 타겟 이동
u->>+g: 목표 LOS
g-->>g: 항법 알고리즘
g-->>g: 제어 알고리즘
g-->>-u: act 제어 응답
u->>u: 화면 표시
end
u->>u: 결과창 표시
sequenceDiagram
participant u@{"type" : "control"} as UI
participant g as GCU
loop Every Nms
u->>u: 타겟 이동
u->>+g: IR 각도측정
g-->>g: 항법 알고리즘
g-->>g: 제어 알고리즘
g-->>-u: act 제어 응답
u->>u: 화면 표시
end
u->>u: 결과창 표시