-
Notifications
You must be signed in to change notification settings - Fork 0
/
dispatch_efficiency.nlogo
1851 lines (1656 loc) · 51.2 KB
/
dispatch_efficiency.nlogo
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
globals [
nimroz-helmand ;; Afghani province border
helmand-kandahar ;; Afghani province border
kandahar-zabul ;; Afghani province border
casualty_count_stabilizer
casualty_generator
total_utility
missions_complete
time_of_day
color-min
color-max
testvariable
casevac_count
]
patches-own [
elevation
]
breed [casualties casualty]
casualties-own[casualty_count dispatch_enroute dispatch_time evacuee_distance evacuated escort_required classification province];
breed [staging_locations staging_location] ;four
breed [medevacs medevac] ;four
medevacs-own[evacuee_distance dispatch_time dispatched evacuee evacuating evacuation_time mtf_selection unloading unloading_time designated_landing_zone mission_complete casualty_count province classification response_time];
breed [mtfs mtf]; two
breed [casevacs casevac]
casevacs-own[time_delay]
breed [escorts escort]
to setup
clear-all
;; read the elevations from an external file
;; note that the file is formatted as a list
;; so we only have to read once into a local variable.
file-open "Grand Canyon data.txt"
let patch-elevations file-read
file-close
;; put a little padding on the upper bound so we don't get too much
;; white, and higher elevations have a little more variation.
set color-max max patch-elevations + 200
let min-elevation min patch-elevations
;; adjust the color-min a little so patches don't end up black
set color-min min-elevation - ((color-max - min-elevation) / 10)
;; transfer the data from the file into the sorted patches
(foreach sort patches patch-elevations [ [the-patch the-elevation] ->
ask the-patch [ set elevation the-elevation ]
])
setup-world
; display-labels
reset-ticks
end
to setup-world
set testvariable FALSE
ask patches[ set pcolor scale-color brown elevation color-min color-max ]
; resize-world 0 100 0 60
set nimroz-helmand 50
set helmand-kandahar 150
set kandahar-zabul 250
set casualty_count_stabilizer 1
set casualty_generator round random-normal 322 54
;ask patches [ ;; change colors for different provinces to make distinction
; if pxcor >= 0 and pxcor < nimroz-helmand [ ;; nimroz
; set pcolor brown
; ]
;
; if pxcor >= nimroz-helmand and pxcor < helmand-kandahar [ ;; helmand
; set pcolor blue
; ]
;
; if pxcor >= helmand-kandahar and pxcor < kandahar-zabul [ ;; kandahar
; set pcolor red
; ]
;
; if pxcor >= kandahar-zabul [ ;; zabul
; set pcolor green
; ]
;]
;; staging locations for MEDEVAC assets now set
set-default-shape staging_locations "landing_zone"
set-default-shape medevacs "blackhawk" ; to be changed
set-default-shape casualties "person soldier"
set-default-shape mtfs "hospital"
set-default-shape casevacs "casevac" ;;
;; --------------------------------- NIMROZ --------------------------------------------- ;;
create-staging_locations 1 [
setxy random-normal (nimroz-helmand * .5) 5 random-normal 150 25
set size 15
]
create-medevacs 1 [
set designated_landing_zone one-of staging_locations with [ pxcor < nimroz-helmand]
move-to designated_landing_zone
set size 20
set dispatched FALSE
set evacuating FALSE
set unloading FALSE
set mission_complete FALSE
set dispatch_time 0
set evacuation_time 0
set unloading_time 0
set casualty_count 0
set province "nimroz"
]
;; --------------------------------- HELMAND --------------------------------------------- ;;
let xsavedh random-normal ((helmand-kandahar + nimroz-helmand) * .5) 10
let ysavedh random-normal 150 25
create-mtfs 1 [
setxy xsavedh ysavedh
set size 30
set color white
]
create-staging_locations 1 [
setxy xsavedh ysavedh + 15
set size 15
]
create-medevacs 1 [
set designated_landing_zone one-of staging_locations with [(pxcor < helmand-kandahar) and (pxcor > nimroz-helmand)]
move-to designated_landing_zone
set size 20
set dispatched FALSE
set evacuating FALSE
set unloading FALSE
set mission_complete FALSE
set dispatch_time 0
set evacuation_time 0
set unloading_time 0
set casualty_count 0
set province "helmand"
]
;; --------------------------------- KANDAHAR --------------------------------------------- ;;
let xsavedk random-normal ((helmand-kandahar + kandahar-zabul) * .5) 10
let ysavedk random-normal 150 25
create-mtfs 1 [
setxy xsavedk ysavedk
set size 30
set color white
]
create-staging_locations 1 [
setxy xsavedk ysavedk + 15
set size 15
]
create-medevacs 1 [
set designated_landing_zone one-of staging_locations with [(pxcor < kandahar-zabul) and (pxcor > helmand-kandahar)]
move-to designated_landing_zone
set size 20
set dispatched FALSE
set evacuating FALSE
set unloading FALSE
set mission_complete FALSE
set dispatch_time 0
set evacuation_time 0
set unloading_time 0
set casualty_count 0
set province "kandahar"
]
;; --------------------------------- ZABUL --------------------------------------------- ;;
create-staging_locations 1 [
setxy random-normal (0.5 * (300 + kandahar-zabul)) 5 random-normal 150 25
set size 15
]
create-medevacs 1 [
set designated_landing_zone one-of staging_locations with [pxcor > kandahar-zabul]
move-to designated_landing_zone
set size 20
set dispatched FALSE
set evacuating FALSE
set unloading FALSE
set mission_complete FALSE
set dispatch_time 0
set evacuation_time 0
set unloading_time 0
set casualty_count 0
set province "zabul"
]
end
to go
;; add day and night features later
if (casualty_generator <= ticks) and (ticks mod casualty_generator = 0) [
set casualty_generator round random-normal 322 54
create-casualties 1 [
set dispatch_enroute FALSE
set evacuated FALSE
set dispatch_time 0
let temp1 random 1000
; if temp1 < 4 [move-to one-of patches with [pxcor < nimroz-helmand] set province "nimroz"]
if temp1 < 4 [
let temp1y random-normal 150 75
let temp1x random-normal (nimroz-helmand * 0.5) (8)
if temp1y > 299 [set temp1y 299]
if temp1y < 1 [set temp1y 1]
if temp1x < 1 [set temp1x 1]
setxy temp1x temp1y set province "nimroz"
]
; if (temp1 >= 4) and (temp1 < 589) [move-to one-of patches with [(pxcor < helmand-kandahar) and (pxcor > nimroz-helmand)] set province "helmand"]
if (temp1 >= 4) and (temp1 < 589) [
let temp2y random-normal 150 75
let temp2x random-normal ((helmand-kandahar + nimroz-helmand) * 0.5) (25)
if temp2y > 299 [set temp2y 299]
if temp2y < 1 [set temp2y 1]
if temp2x < 1 [set temp2x 1]
setxy temp2x temp2y set province "helmand"
]
; if (temp1 >= 589) and (temp1 < 927) [move-to one-of patches with [(pxcor < kandahar-zabul) and (pxcor > helmand-kandahar)] set province "kandahar"]
if (temp1 >= 589) and (temp1 < 927) [
let temp3y random-normal 150 75
let temp3x random-normal ((helmand-kandahar + kandahar-zabul) * 0.5) (25)
if temp3y > 299 [set temp3y 299]
if temp3y < 1 [set temp3y 1]
if temp3x > 299 [set temp3x 299]
setxy temp3x temp3y set province "kandahar"
]
; if temp1 >= 927 [move-to one-of patches with [pxcor > kandahar-zabul] set province "zabul"]
if temp1 >= 927 [
let temp4y random-normal 150 75
if temp4y > 299 [set temp4y 299]
if temp4y < 1 [set temp4y 1]
setxy random-normal ((kandahar-zabul + 300 ) * 0.5) (8) temp4y set province "zabul"
]
let temp2 random 1000
if temp2 < 574 [set casualty_count 1]
if (temp2 >= 574) and (temp2 < 934) [set casualty_count 2]
if (temp2 >= 934) and (temp2 < 984) [set casualty_count 3]
if temp2 >= 984 [set casualty_count 4]
let temp3 random 100
if temp3 < 32 [set escort_required TRUE]
if temp3 >= 32 [set escort_required FALSE]
let temp4 random 1000
if temp4 < 159 [set classification "urgent"]
if temp4 >= 159 and temp4 < 316 [set classification "priority"]
if temp4 >= 316 [set classification "routine"]
set size 10
]
]
;; --------------------------------- MYOPIC DISPATCHING --------------------------------------------- ;;
if dispatching_strategy = "Myopic" [
if count casualties = casualty_count_stabilizer [
set casualty_count_stabilizer casualty_count_stabilizer + 1
if count medevacs with [dispatched = FALSE] != 0 [
ask medevacs with [dispatched = FALSE] [set evacuee_distance distance min-one-of casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] [distance myself]]
ask casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] [set evacuee_distance distance min-one-of medevacs with [dispatched = FALSE] [distance myself]]
ask min-one-of (medevacs with [dispatched = FALSE]) [evacuee_distance] [
set dispatched TRUE
set evacuee min-one-of casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] [distance myself]
set casualty_count [casualty_count] of evacuee
set classification [classification] of evacuee
]
]
]
if count medevacs with [dispatched = FALSE] = 0 and count casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE]!= 0 [
create-casevacs 1 [
move-to one-of casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE]
set size 20
]
ask casualties with [dispatch_enroute = FALSE] [set hidden? TRUE]
set casevac_count casevac_count + 1
]
if count casevacs != 0 [
ask casevacs [set time_delay time_delay + 1]
]
ask casevacs with [time_delay > 100] [die]
if count casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] != 0 [
ask min-one-of (casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE]) [evacuee_distance] [set dispatch_enroute TRUE]
]
ask medevacs with [dispatched = TRUE] [
set dispatch_time dispatch_time + 1
]
ask casualties with [dispatch_enroute = TRUE] [
set dispatch_time dispatch_time + 1
]
ask medevacs with [dispatched = TRUE] with [[escort_required] of evacuee = FALSE] with [dispatch_time >= 15] with [evacuating = FALSE] [
set heading towards evacuee if [distance myself] of evacuee > 3 [
fd MEDEVAC_Speed
]
]
ask medevacs with [dispatched = TRUE] with [[escort_required] of evacuee = TRUE] with [dispatch_time >= 25] with [evacuating = FALSE] [
set heading towards evacuee if [distance myself] of evacuee > 3 [
fd MEDEVAC_Speed
]
]
ask medevacs with [dispatched = TRUE] with [evacuating = FALSE] [
if [distance myself] of evacuee <= 3 [
set evacuating TRUE
ask evacuee [
set evacuated TRUE
]
]
]
]
;; --------------------------------- INTRA-ZONE DISPATCHING --------------------------------------------- ;;
if dispatching_strategy = "Intra-Zone" [
if count casualties = casualty_count_stabilizer [
set casualty_count_stabilizer casualty_count_stabilizer + 1
foreach ["nimroz" "helmand" "kandahar" "zabul"] [ x ->
if count casualties with [province = x] with [dispatch_enroute = FALSE] with [hidden? = FALSE] != 0 [
; ask casualties with [province = x] with [dispatch_enroute = FALSE] with [hidden? = FALSE][
; set evacuee_distance distance min-one-of medevacs with [province = x] [distance myself]
; ]
ask medevacs with [province = x] with [dispatched = FALSE][
set evacuee_distance distance min-one-of casualties with [province = x] with [hidden? = FALSE] [distance myself]
set evacuee min-one-of casualties with [province = x] with [hidden? = FALSE] [distance myself]
set dispatched TRUE
set casualty_count [casualty_count] of evacuee
set classification [classification] of evacuee
]
]
]
]
ask medevacs with [dispatched = TRUE] [
set dispatch_time dispatch_time + 1
]
ask medevacs with [dispatched = TRUE] with [[escort_required] of evacuee = FALSE] with [dispatch_time >= 15] with [evacuating = FALSE] [
set heading towards evacuee if [distance myself] of evacuee > 3 [
; set heading towards evacuee if distance evacuee [distance myself] > 3 [
fd MEDEVAC_Speed
]
]
ask medevacs with [dispatched = TRUE] with [[escort_required] of evacuee = TRUE] with [dispatch_time >= 25] with [evacuating = FALSE] [
set heading towards evacuee if [distance myself] of evacuee > 3 [
fd MEDEVAC_Speed
]
]
ask medevacs with [dispatched = TRUE] with [evacuating = FALSE] [
if [distance myself] of evacuee <= 3 [
set evacuating TRUE
ask evacuee [
set evacuated TRUE
]
]
]
]
;; --------------------------------- OPTIMAL DISPATCHING --------------------------------------------- ;;
if dispatching_strategy = "Optimal" [
if count casualties = casualty_count_stabilizer [
set casualty_count_stabilizer casualty_count_stabilizer + 1
; to do once
if count medevacs with [dispatched = FALSE] != 0 [
if count casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] with [province = "kandahar"] with [classification != "urgent"] != 0 [
ask medevacs with [province = "zabul"] with [dispatched = FALSE] [
set evacuee_distance distance min-one-of casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] with [province = "kandahar"] with [classification != "urgent"] [distance myself]
ask casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] with [province = "kandahar"] with [classification != "urgent"] [
set evacuee_distance distance min-one-of medevacs with [dispatched = FALSE] with [province = "zabul"] [distance myself]
set dispatch_enroute TRUE
]
]
ask medevacs with [province = "zabul"] with [dispatched = FALSE] [
set dispatched TRUE
set evacuee min-one-of casualties with [hidden? = FALSE] with [province = "kandahar"] with [classification != "urgent"] [distance myself]
set casualty_count [casualty_count] of evacuee
set classification [classification] of evacuee
]
]
if count casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] with [province = "helmand"] with [classification != "urgent"] != 0 [
ask medevacs with [province = "nimroz"] with [dispatched = FALSE] [
set evacuee_distance distance min-one-of casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] with [province = "helmand"] with [classification != "urgent"] [distance myself]
ask casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] with [province = "helmand"] with [classification != "urgent"] [
set evacuee_distance distance min-one-of medevacs with [dispatched = FALSE] with [province = "nimroz"] [distance myself]
set dispatch_enroute TRUE
]
]
ask medevacs with [province = "nimroz"] with [dispatched = FALSE] [
set dispatched TRUE
set evacuee min-one-of casualties with [hidden? = FALSE] with [province = "helmand"] with [classification != "urgent"] [distance myself]
set casualty_count [casualty_count] of evacuee
set classification [classification] of evacuee
]
]
if count casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] != 0 [
ask medevacs with [dispatched = FALSE] [set evacuee_distance distance min-one-of casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] [distance myself]]
ask casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] [set evacuee_distance distance min-one-of medevacs with [dispatched = FALSE] [distance myself]]
ask min-one-of (medevacs with [dispatched = FALSE]) [evacuee_distance] [
set dispatched TRUE
set evacuee min-one-of casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] [distance myself]
set casualty_count [casualty_count] of evacuee
set classification [classification] of evacuee
]
]
]
] ;; check?
if count medevacs with [dispatched = FALSE] = 0 and count casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE]!= 0 [
create-casevacs 1 [
move-to one-of casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE]
set size 20
]
ask casualties with [dispatch_enroute = FALSE] [set hidden? TRUE]
set casevac_count casevac_count + 1
]
if count casevacs != 0 [
ask casevacs [set time_delay time_delay + 1]
]
ask casevacs with [time_delay > 100] [die]
;if count casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE] != 0 [
; ask min-one-of (casualties with [dispatch_enroute = FALSE] with [hidden? = FALSE]) [evacuee_distance] [set dispatch_enroute TRUE]
;]
ask medevacs with [dispatched = TRUE] [
set dispatch_time dispatch_time + 1
]
ask casualties with [dispatch_enroute = TRUE] [
set dispatch_time dispatch_time + 1
]
ask medevacs with [dispatched = TRUE] with [[escort_required] of evacuee = FALSE] with [dispatch_time >= 15] with [evacuating = FALSE] [
set heading towards evacuee if [distance myself] of evacuee > 3 [
fd MEDEVAC_Speed
]
]
ask medevacs with [dispatched = TRUE] with [[escort_required] of evacuee = TRUE] with [dispatch_time >= 25] with [evacuating = FALSE] [
set heading towards evacuee if [distance myself] of evacuee > 3 [
fd MEDEVAC_Speed
]
]
ask medevacs with [dispatched = TRUE] with [evacuating = FALSE] [
if [distance myself] of evacuee <= 3 [
set evacuating TRUE
ask evacuee [
set evacuated TRUE
]
]
]
]
;; --------------------------------- EVACUATING --------------------------------------------- ;;
if count casualties + 1 = casualty_count_stabilizer [
ask medevacs with [evacuating = TRUE] [set mtf_selection min-one-of mtfs [distance myself]]
]
ask medevacs with [evacuating = TRUE] [
set evacuation_time evacuation_time + 1
]
ask medevacs with [evacuating = TRUE] with [evacuation_time >= 10] with [unloading = FALSE] [
ask casualties with [evacuated = TRUE] with [hidden? = FALSE] [
set hidden? TRUE
set dispatch_enroute FALSE
set dispatch_time 0
]
set heading towards mtf_selection if [distance myself] of mtf_selection > 3 [
; set heading towards mtf_selection if (not any? mtfs-on neighbors) and (not any? mtfs-on patch-ahead 2) and (not any? mtfs-on patch-ahead 0) [
fd MEDEVAC_Speed
]
]
ask medevacs with [evacuating = TRUE] with [unloading = FALSE] [
if [distance myself] of mtf_selection <= 3 [
set unloading TRUE
]
]
;; --------------------------------- UNLOADING --------------------------------------------- ;;
ask medevacs with [unloading = TRUE] [
set unloading_time unloading_time + 1
]
ask medevacs with [unloading = TRUE] with [unloading_time >= 5] [
set heading towards designated_landing_zone if [distance myself] of designated_landing_zone > 3 [
; set heading towards designated_landing_zone if (not any? staging_locations-on neighbors) and (not any? staging_locations-on patch-ahead 2)and (not any? staging_locations-on patch-ahead 0) [
fd MEDEVAC_Speed
]
]
ask medevacs with [unloading = TRUE] with [mission_complete = FALSE] [
if [distance myself] of designated_landing_zone <= 3 [
set mission_complete TRUE
]
]
; ask medevacs with [unloading = TRUE] with [mission_complete = FALSE] with [unloading_time >= 5] with [province = "helmand" or province = "kandahar"] [set mission_complete TRUE]
;; --------------------------------- MISSION-RESET --------------------------------------------- ;;
ask medevacs with [mission_complete = TRUE] [
set response_time (dispatch_time - unloading_time + 5)
ifelse RTT = "NATO" [
if response_time <= 90 and classification = "urgent" [set total_utility total_utility + casualty_count * 10]
if response_time <= 360 and classification = "priority" [set total_utility total_utility + casualty_count]
;; if response_time <= 2400 and classification = "routine" [set total_utility total_utility + casualty_count]
][
if response_time <= 60 and classification = "urgent" [set total_utility total_utility + casualty_count * 10]
if response_time <= 240 and classification = "priority" [set total_utility total_utility + casualty_count]
;; if response_time <= 2400 and classification = "routine" [set total_utility total_utility + casualty_count]
]
set missions_complete missions_complete + 1
set dispatched FALSE
set unloading FALSE
set evacuating FALSE
set mission_complete FALSE
set dispatch_time 0
set evacuation_time 0
set unloading_time 0
set casualty_count 0
] ; reset
tick
end
@#$#@#$#@
GRAPHICS-WINDOW
535
15
1295
776
-1
-1
2.5
1
10
1
1
1
0
0
0
1
0
300
0
300
1
1
1
ticks
30.0
BUTTON
23
163
86
196
NIL
setup
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
BUTTON
24
202
87
235
NIL
go
T
1
T
OBSERVER
NIL
NIL
NIL
NIL
0
MONITOR
34
378
193
423
Z distance to evacuee
[evacuee_distance] of medevacs with [province = \"zabul\"]
5
1
11
MONITOR
34
477
178
522
K distance to evacuee
[evacuee_distance] of medevacs with [province = \"kandahar\"]
17
1
11
MONITOR
34
577
184
622
H distance to evacuee
[evacuee_distance] of medevacs with [province = \"helmand\"]
17
1
11
MONITOR
34
681
178
726
N distance to evacuee
[evacuee_distance] of medevacs with [province = \"nimroz\"]
17
1
11
MONITOR
199
378
399
423
Zabul MEDEVAC dispatched?
[dispatched] of medevacs with [province = \"zabul\"]
17
1
11
MONITOR
182
477
406
522
Kandahar MEDEVAC dispatched?
[dispatched] of medevacs with [province = \"kandahar\"]
17
1
11
MONITOR
187
577
406
622
Helmand MEDEVAC dispatched?
[dispatched] of medevacs with [province = \"helmand\"]
17
1
11
MONITOR
181
680
387
725
Nimroz MEDEVAC dispatched?
[dispatched] of medevacs with [province = \"nimroz\"]
17
1
11
MONITOR
251
239
391
284
MEDEVAC Requests
missions_complete
17
1
11
MONITOR
167
239
248
284
total utility
total_utility
17
1
11
MONITOR
404
379
509
424
Z evacuating?
[evacuating] of medevacs with [province = \"zabul\"]
17
1
11
MONITOR
392
681
496
726
N evacuating?
[evacuating] of medevacs with [province = \"nimroz\"]
17
1
11
MONITOR
411
576
515
621
H evacuating?
[evacuating] of medevacs with [province = \"helmand\"]
17
1
11
MONITOR
409
478
512
523
K evacuating?
[evacuating] of medevacs with [province = \"kandahar\"]
17
1
11
MONITOR
35
428
133
473
Z unloading?
[unloading] of medevacs with [province = \"zabul\"]
17
1
11
MONITOR
34
527
126
572
K unloading?
[unloading] of medevacs with [province = \"kandahar\"]
17
1
11
MONITOR
34
626
131
671
H unloading?
[unloading] of medevacs with [province = \"helmand\"]
17
1
11
MONITOR
34
730
131
775
N unloading?
[unloading] of medevacs with [province = \"nimroz\"]
17
1
11
CHOOSER
189
164
340
209
Dispatching_Strategy
Dispatching_Strategy
"Myopic" "Intra-Zone" "Optimal"
0
TEXTBOX
982
24
1132
48
KANDAHAR
20
0.0
1
TEXTBOX
551
26
701
50
NIMROZ
20
0.0
1
TEXTBOX
746
26
896
50
HELMAND
20
0.0
1
TEXTBOX
1217
26
1367
50
ZABUL
20
0.0
1
MONITOR
137
429
293
474
Z Event Classification
[classification] of medevacs with [province = \"zabul\"]
17
1
11
MONITOR
130
528
284
573
K Event Classification
[classification] of medevacs with [province = \"kandahar\"]
17
1
11
MONITOR
135
626
290
671
H Event Classification
[classification] of medevacs with [province = \"helmand\"]
17
1
11
MONITOR
137
730
292
775
N Event Classification
[classification] of medevacs with [province = \"nimroz\"]
17
1
11
MONITOR
287
528
416
573
K Response Time
[response_time] of medevacs with [province = \"kandahar\"]
17
1
11
MONITOR
296
627
424
672
H Response Time
[response_time] of medevacs with [province = \"helmand\"]
17
1
11
MONITOR
297
430
426
475
Z Response Time
[response_time] of medevacs with [province = \"zabul\"]
17
1
11
MONITOR
298
731
426
776
N Response Time
[response_time] of medevacs with [province = \"nimroz\"]
17
1
11
CHOOSER
93
164
185
209
RTT
RTT
"NATO" "US"
0
MONITOR
1221
690
1290
771
TIME
ticks mod 2400
17
1
20
MONITOR
1158
690
1218
771
DAY
floor (ticks / 2400)
17
1
20
TEXTBOX
20
57
526
85
For Technical Report, Code, visit mahdialhusseini.com
18
0.0
1
MONITOR
24
239
163