-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbasic_tracking.json
More file actions
74 lines (74 loc) · 1.59 KB
/
Copy pathbasic_tracking.json
File metadata and controls
74 lines (74 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "Basic Tracking",
"description": "Simple scenario with 3 targets approaching from different directions",
"version": "1.0",
"radar": {
"frequency_ghz": 10.0,
"power_watts": 1000,
"antenna_gain_db": 30,
"prf_hz": 1000,
"beamwidth_deg": 1.7
},
"environment": {
"terrain_type": "rural",
"weather": "clear",
"sea_state": 0
},
"targets": [
{
"id": 1,
"type": "aircraft",
"initial_position": [
40000,
10000,
8000
],
"velocity": [
-200,
-50,
-10
],
"rcs": 15.0,
"swerling_model": 1
},
{
"id": 2,
"type": "fighter",
"initial_position": [
-30000,
25000,
5000
],
"velocity": [
180,
-120,
5
],
"rcs": 5.0,
"swerling_model": 3
},
{
"id": 3,
"type": "cruise_missile",
"initial_position": [
35000,
-20000,
100
],
"velocity": [
-250,
80,
0
],
"rcs": 0.5,
"swerling_model": 1
}
],
"ecm": {
"enabled": false
},
"simulation": {
"duration_seconds": 120,
"time_step": 0.1
}
}