-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDDA_result_BC_rpp20nm.dat
More file actions
11880 lines (10032 loc) · 266 KB
/
DDA_result_BC_rpp20nm.dat
File metadata and controls
11880 lines (10032 loc) · 266 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
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
####################### Start of result section #######################
wl0_index 0
target_index 0
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N8_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.000268083
mass_particle 4.82549e-16
density_particle 1.8
ve_radius_particle 0.04
----------------- Computed optical properties -----------------
mean_Csca 0.00183856
std_Csca 0.000144254
mean_MAC 14.8258
std_MAC 0.373098
mean_SSA 0.20423
std_SSA 0.00964468
------------------- Computational info --------------------
f 6
nx 5
ny 4
nz 5
num_element_cuboid 100
num_element_occupy 8
DDA_solver_time 0
DDA_solver_time_per_Ninc 0
************************ End of result section ***********************
MAC_mie 12.2542
####################### Start of result section #######################
wl0_index 0
target_index 1
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N16_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.000502655
mass_particle 9.04779e-16
density_particle 1.8
ve_radius_particle 0.0493242
----------------- Computed optical properties -----------------
mean_Csca 0.00315984
std_Csca 0.000250539
mean_MAC 10.792
std_MAC 0.8455
mean_SSA 0.244814
std_SSA 0.0189426
------------------- Computational info --------------------
f 6
nx 6
ny 6
nz 7
num_element_cuboid 252
num_element_occupy 15
DDA_solver_time 0
DDA_solver_time_per_Ninc 0
************************ End of result section ***********************
MAC_mie 12.0648
####################### Start of result section #######################
wl0_index 0
target_index 2
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N32_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.00100531
mass_particle 1.80956e-15
density_particle 1.8
ve_radius_particle 0.0621446
----------------- Computed optical properties -----------------
mean_Csca 0.00649279
std_Csca 0.000790041
mean_MAC 9.37711
std_MAC 0.723646
mean_SSA 0.277317
std_SSA 0.037752
------------------- Computational info --------------------
f 6
nx 11
ny 9
nz 7
num_element_cuboid 693
num_element_occupy 30
DDA_solver_time 0
DDA_solver_time_per_Ninc 0
************************ End of result section ***********************
MAC_mie 10.5313
####################### Start of result section #######################
wl0_index 0
target_index 3
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N64_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.00207764
mass_particle 3.73975e-15
density_particle 1.8
ve_radius_particle 0.0791578
----------------- Computed optical properties -----------------
mean_Csca 0.0115947
std_Csca 0.00188353
mean_MAC 8.22413
std_MAC 0.33056
mean_SSA 0.27312
std_SSA 0.0357165
------------------- Computational info --------------------
f 6
nx 17
ny 9
nz 8
num_element_cuboid 1224
num_element_occupy 62
DDA_solver_time 1
DDA_solver_time_per_Ninc 0.25
************************ End of result section ***********************
MAC_mie 8.37468
####################### Start of result section #######################
wl0_index 0
target_index 4
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N128_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.00408826
mass_particle 7.35887e-15
density_particle 1.8
ve_radius_particle 0.0991935
----------------- Computed optical properties -----------------
mean_Csca 0.0307675
std_Csca 0.0030182
mean_MAC 8.05215
std_MAC 0.308005
mean_SSA 0.341523
std_SSA 0.0280376
------------------- Computational info --------------------
f 6
nx 18
ny 18
nz 13
num_element_cuboid 4212
num_element_occupy 122
DDA_solver_time 5
DDA_solver_time_per_Ninc 1.25
************************ End of result section ***********************
MAC_mie 6.74238
####################### Start of result section #######################
wl0_index 0
target_index 5
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N256_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.00827705
mass_particle 1.48987e-14
density_particle 1.8
ve_radius_particle 0.125486
----------------- Computed optical properties -----------------
mean_Csca 0.066736
std_Csca 0.000364417
mean_MAC 6.66351
std_MAC 0.252407
mean_SSA 0.402136
std_SSA 0.00789657
------------------- Computational info --------------------
f 6
nx 24
ny 19
nz 17
num_element_cuboid 7752
num_element_occupy 247
DDA_solver_time 16
DDA_solver_time_per_Ninc 4
************************ End of result section ***********************
MAC_mie 5.11531
####################### Start of result section #######################
wl0_index 0
target_index 6
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N512_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.0159509
mass_particle 2.87116e-14
density_particle 1.8
ve_radius_particle 0.156159
----------------- Computed optical properties -----------------
mean_Csca 0.107672
std_Csca 0.00192487
mean_MAC 5.83778
std_MAC 0.234142
mean_SSA 0.391259
std_SSA 0.00574144
------------------- Computational info --------------------
f 6
nx 28
ny 32
nz 20
num_element_cuboid 17920
num_element_occupy 476
DDA_solver_time 39
DDA_solver_time_per_Ninc 9.75
************************ End of result section ***********************
MAC_mie 3.89532
####################### Start of result section #######################
wl0_index 0
target_index 7
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N1024_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.0320694
mass_particle 5.77249e-14
density_particle 1.8
ve_radius_particle 0.197091
----------------- Computed optical properties -----------------
mean_Csca 0.205962
std_Csca 0.00735537
mean_MAC 5.02876
std_MAC 0.223612
mean_SSA 0.415122
std_SSA 0.00699976
------------------- Computational info --------------------
f 6
nx 26
ny 40
nz 30
num_element_cuboid 31200
num_element_occupy 957
DDA_solver_time 136
DDA_solver_time_per_Ninc 34
************************ End of result section ***********************
MAC_mie 2.90715
####################### Start of result section #######################
wl0_index 0
target_index 8
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N2048_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.0634685
mass_particle 1.14243e-13
density_particle 1.8
ve_radius_particle 0.247451
----------------- Computed optical properties -----------------
mean_Csca 0.292628
std_Csca 0.0454957
mean_MAC 3.32931
std_MAC 0.499831
mean_SSA 0.434708
std_SSA 0.00761026
------------------- Computational info --------------------
f 6
nx 32
ny 34
nz 61
num_element_cuboid 66368
num_element_occupy 1894
DDA_solver_time 217
DDA_solver_time_per_Ninc 54.25
************************ End of result section ***********************
MAC_mie 2.18178
####################### Start of result section #######################
wl0_index 0
target_index 9
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N4096_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.12687
mass_particle 2.28366e-13
density_particle 1.8
ve_radius_particle 0.311714
----------------- Computed optical properties -----------------
mean_Csca 0.609078
std_Csca 0.0455621
mean_MAC 3.15483
std_MAC 0.293435
mean_SSA 0.458406
std_SSA 0.00459808
------------------- Computational info --------------------
f 6
nx 60
ny 48
nz 59
num_element_cuboid 169920
num_element_occupy 3786
DDA_solver_time 586
DDA_solver_time_per_Ninc 146.5
************************ End of result section ***********************
MAC_mie 1.6345
####################### Start of result section #######################
wl0_index 0
target_index 10
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N8192_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.254812
mass_particle 4.58662e-13
density_particle 1.8
ve_radius_particle 0.393288
----------------- Computed optical properties -----------------
mean_Csca 1.08751
std_Csca 0.0263743
mean_MAC 2.82258
std_MAC 0.0416532
mean_SSA 0.456496
std_SSA 0.00285585
------------------- Computational info --------------------
f 6
nx 80
ny 91
nz 61
num_element_cuboid 444080
num_element_occupy 7604
DDA_solver_time 2174
DDA_solver_time_per_Ninc 543.5
************************ End of result section ***********************
MAC_mie 1.22792
####################### Start of result section #######################
wl0_index 0
target_index 11
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_0_agg_N16384_kf1.0_Df2.8.out
is_homogeneous 1
eper_particle (2.895,2.576)
mper_particle (1,0)
volume_particle 0.505302
mass_particle 9.09544e-13
density_particle 1.8
ve_radius_particle 0.494107
----------------- Computed optical properties -----------------
mean_Csca 1.73719
std_Csca 0.0988569
mean_MAC 2.10902
std_MAC 0.133378
mean_SSA 0.475297
std_SSA 0.00478404
------------------- Computational info --------------------
f 6
nx 91
ny 88
nz 113
num_element_cuboid 904904
num_element_occupy 15079
DDA_solver_time 4965
DDA_solver_time_per_Ninc 1241.25
************************ End of result section ***********************
MAC_mie 0.931755
####################### Start of result section #######################
wl0_index 0
target_index 12
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N8_kf1.0_Df2.8.out
is_homogeneous 0
eper_core (2.895,2.576)
mper_core (1,0)
volume_core 0.000268083
mass_core 4.82549e-16
density_core 1.8
ve_radius_core 0.04
eper_coat (2.25,0)
mper_coat (1,0)
volume_coat 0.000328
coat_to_core_vratio 1.2235
----------------- Computed optical properties -----------------
mean_Csca 0.00361523
std_Csca 0.000720087
mean_MAC 20.0147
std_MAC 1.58047
mean_SSA 0.270619
std_SSA 0.0297717
------------------- Computational info --------------------
f 6
nx 5
ny 4
nz 5
num_element_cuboid 100
num_element_occupy 49
DDA_solver_time 0
DDA_solver_time_per_Ninc 0
************************ End of result section ***********************
MAC_mie 12.2542
####################### Start of result section #######################
wl0_index 0
target_index 13
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N16_kf1.0_Df2.8.out
is_homogeneous 0
eper_core (2.895,2.576)
mper_core (1,0)
volume_core 0.000502655
mass_core 9.04779e-16
density_core 1.8
ve_radius_core 0.0493242
eper_coat (2.25,0)
mper_coat (1,0)
volume_coat 0.00104
coat_to_core_vratio 2.06901
----------------- Computed optical properties -----------------
mean_Csca 0.00910033
std_Csca 0.000534182
mean_MAC 19.7504
std_MAC 3.01064
mean_SSA 0.340323
std_SSA 0.0471751
------------------- Computational info --------------------
f 6
nx 6
ny 6
nz 7
num_element_cuboid 252
num_element_occupy 145
DDA_solver_time 0
DDA_solver_time_per_Ninc 0
************************ End of result section ***********************
MAC_mie 12.0648
####################### Start of result section #######################
wl0_index 0
target_index 14
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N32_kf1.0_Df2.8.out
is_homogeneous 0
eper_core (2.895,2.576)
mper_core (1,0)
volume_core 0.00100531
mass_core 1.80956e-15
density_core 1.8
ve_radius_core 0.0621446
eper_coat (2.25,0)
mper_coat (1,0)
volume_coat 0.00436
coat_to_core_vratio 4.33697
----------------- Computed optical properties -----------------
mean_Csca 0.0398719
std_Csca 0.00233649
mean_MAC 20.8455
std_MAC 1.26955
mean_SSA 0.513847
std_SSA 0.0292549
------------------- Computational info --------------------
f 6
nx 11
ny 9
nz 7
num_element_cuboid 693
num_element_occupy 575
DDA_solver_time 0
DDA_solver_time_per_Ninc 0
************************ End of result section ***********************
MAC_mie 10.5313
####################### Start of result section #######################
wl0_index 0
target_index 15
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N64_kf1.0_Df2.8.out
is_homogeneous 0
eper_core (2.895,2.576)
mper_core (1,0)
volume_core 0.00207764
mass_core 3.73975e-15
density_core 1.8
ve_radius_core 0.0791578
eper_coat (2.25,0)
mper_coat (1,0)
volume_coat 0.00692
coat_to_core_vratio 3.3307
----------------- Computed optical properties -----------------
mean_Csca 0.0536912
std_Csca 0.00501608
mean_MAC 18.3622
std_MAC 0.577564
mean_SSA 0.43823
std_SSA 0.0306279
------------------- Computational info --------------------
f 6
nx 17
ny 9
nz 8
num_element_cuboid 1224
num_element_occupy 927
DDA_solver_time 2
DDA_solver_time_per_Ninc 0.5
************************ End of result section ***********************
MAC_mie 8.37468
####################### Start of result section #######################
wl0_index 0
target_index 16
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N128_kf1.0_Df2.8.out
is_homogeneous 0
eper_core (2.895,2.576)
mper_core (1,0)
volume_core 0.00408826
mass_core 7.35887e-15
density_core 1.8
ve_radius_core 0.0991935
eper_coat (2.25,0)
mper_coat (1,0)
volume_coat 0.018832
coat_to_core_vratio 4.60636
----------------- Computed optical properties -----------------
mean_Csca 0.113152
std_Csca 0.0204871
mean_MAC 17.84
std_MAC 1.22023
mean_SSA 0.460584
std_SSA 0.0640013
------------------- Computational info --------------------
f 6
nx 18
ny 18
nz 13
num_element_cuboid 4212
num_element_occupy 2476
DDA_solver_time 8
DDA_solver_time_per_Ninc 2
************************ End of result section ***********************
MAC_mie 6.74238
####################### Start of result section #######################
wl0_index 0
target_index 17
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N256_kf1.0_Df2.8.out
is_homogeneous 0
eper_core (2.895,2.576)
mper_core (1,0)
volume_core 0.00827705
mass_core 1.48987e-14
density_core 1.8
ve_radius_core 0.125486
eper_coat (2.25,0)
mper_coat (1,0)
volume_coat 0.034664
coat_to_core_vratio 4.18797
----------------- Computed optical properties -----------------
mean_Csca 0.167492
std_Csca 0.0191377
mean_MAC 14.9656
std_MAC 0.335088
mean_SSA 0.427899
std_SSA 0.0244826
------------------- Computational info --------------------
f 6
nx 24
ny 19
nz 17
num_element_cuboid 7752
num_element_occupy 4580
DDA_solver_time 27
DDA_solver_time_per_Ninc 6.75
************************ End of result section ***********************
MAC_mie 5.11531
####################### Start of result section #######################
wl0_index 0
target_index 18
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N512_kf1.0_Df2.8.out
is_homogeneous 0
eper_core (2.895,2.576)
mper_core (1,0)
volume_core 0.0159509
mass_core 2.87116e-14
density_core 1.8
ve_radius_core 0.156159
eper_coat (2.25,0)
mper_coat (1,0)
volume_coat 0.06072
coat_to_core_vratio 3.80668
----------------- Computed optical properties -----------------
mean_Csca 0.289426
std_Csca 0.0323988
mean_MAC 12.0586
std_MAC 0.125037
mean_SSA 0.45423
std_SSA 0.0259207
------------------- Computational info --------------------
f 6
nx 28
ny 32
nz 20
num_element_cuboid 17920
num_element_occupy 8066
DDA_solver_time 67
DDA_solver_time_per_Ninc 16.75
************************ End of result section ***********************
MAC_mie 3.89532
####################### Start of result section #######################
wl0_index 0
target_index 19
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N1024_kf1.0_Df2.8.out
is_homogeneous 0
eper_core (2.895,2.576)
mper_core (1,0)
volume_core 0.0320694
mass_core 5.77249e-14
density_core 1.8
ve_radius_core 0.197091
eper_coat (2.25,0)
mper_coat (1,0)
volume_coat 0.090728
coat_to_core_vratio 2.82912
----------------- Computed optical properties -----------------
mean_Csca 0.342524
std_Csca 0.019197
mean_MAC 8.39234
std_MAC 0.250173
mean_SSA 0.413988
std_SSA 0.00664572
------------------- Computational info --------------------
f 6
nx 26
ny 40
nz 30
num_element_cuboid 31200
num_element_occupy 12298
DDA_solver_time 173
DDA_solver_time_per_Ninc 43.25
************************ End of result section ***********************
MAC_mie 2.90715
####################### Start of result section #######################
wl0_index 0
target_index 20
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N2048_kf1.0_Df2.8.out
is_homogeneous 0
eper_core (2.895,2.576)
mper_core (1,0)
volume_core 0.0634685
mass_core 1.14243e-13
density_core 1.8
ve_radius_core 0.247451
eper_coat (2.25,0)
mper_coat (1,0)
volume_coat 0.18316
coat_to_core_vratio 2.88584
----------------- Computed optical properties -----------------
mean_Csca 0.367376
std_Csca 0.0447984
mean_MAC 6.09278
std_MAC 0.416478
mean_SSA 0.344759
std_SSA 0.0153823
------------------- Computational info --------------------
f 6
nx 32
ny 34
nz 61
num_element_cuboid 66368
num_element_occupy 24789
DDA_solver_time 377
DDA_solver_time_per_Ninc 94.25
************************ End of result section ***********************
MAC_mie 2.18178
####################### Start of result section #######################
wl0_index 0
target_index 21
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N4096_kf1.0_Df2.8.out
is_homogeneous 0
eper_core (2.895,2.576)
mper_core (1,0)
volume_core 0.12687
mass_core 2.28366e-13
density_core 1.8
ve_radius_core 0.311714
eper_coat (2.25,0)
mper_coat (1,0)
volume_coat 0.38784
coat_to_core_vratio 3.05699
----------------- Computed optical properties -----------------
mean_Csca 0.733917
std_Csca 0.0531578
mean_MAC 5.52751
std_MAC 0.383323
mean_SSA 0.367618
std_SSA 0.00760357
------------------- Computational info --------------------
f 6
nx 60
ny 48
nz 59
num_element_cuboid 169920
num_element_occupy 52266
DDA_solver_time 964
DDA_solver_time_per_Ninc 241
************************ End of result section ***********************
MAC_mie 1.6345
####################### Start of result section #######################
wl0_index 0
target_index 22
----------------- Incident wave properties -------------------
wl0 0.3
N_inc 4
-------------------- Medium properties -----------------------
eper_medium (1,0)
mper_medium (1,0)
-------------------- Target properties ----------------------
target_fname DDA_target_2_agg_N8192_kf1.0_Df2.8.out