forked from open-atmos/PyPartMC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaero_particle.F90
554 lines (423 loc) · 18.7 KB
/
aero_particle.F90
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
!###################################################################################################
! This file is a part of PyPartMC licensed under the GNU General Public License v3 (LICENSE file) #
! Copyright (C) 2022 University of Illinois Urbana-Champaign #
! Authors: https://github.com/open-atmos/PyPartMC/graphs/contributors #
!###################################################################################################
module PyPartMC_aero_particle
use iso_c_binding
use pmc_aero_particle
implicit none
contains
subroutine f_aero_particle_ctor(ptr_c) bind(C)
type(aero_particle_t), pointer :: ptr_f => null()
type(c_ptr), intent(out) :: ptr_c
allocate(ptr_f)
ptr_c = c_loc(ptr_f)
end subroutine
subroutine f_aero_particle_dtor(ptr_c) bind(C)
type(aero_particle_t), pointer :: ptr_f => null()
type(c_ptr), intent(in) :: ptr_c
call c_f_pointer(ptr_c, ptr_f)
deallocate(ptr_f%vol)
deallocate(ptr_f)
end subroutine
subroutine f_aero_particle_init(ptr_c, aero_data_ptr_c, arr_data, arr_size) bind(C)
type(aero_particle_t), pointer :: ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: ptr_c, aero_data_ptr_c
integer(c_int), intent(in) :: arr_size
real(c_double), dimension(arr_size), intent(in) :: arr_data
call c_f_pointer(ptr_c, ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
call aero_particle_zero(ptr_f, aero_data_ptr_f)
call aero_particle_set_vols(ptr_f, arr_data)
end subroutine
subroutine f_aero_particle_volumes(ptr_c, arr_data, arr_size) bind(C)
type(c_ptr), intent(in) :: ptr_c
type(aero_particle_t), pointer :: aero_particle => null()
integer(c_int), intent(in) :: arr_size
real(c_double), dimension(arr_size), intent(out) :: arr_data
call c_f_pointer(ptr_c, aero_particle)
arr_data = aero_particle%vol
end subroutine
subroutine f_aero_particle_volume(ptr_c, vol) bind(C)
type(aero_particle_t), pointer :: ptr_f => null()
type(c_ptr), intent(in) :: ptr_c
real(c_double), intent(out) :: vol
call c_f_pointer(ptr_c, ptr_f)
vol = aero_particle_volume(ptr_f)
end subroutine
subroutine f_aero_particle_species_volume(ptr_c, i_spec, vol) bind(C)
type(aero_particle_t), pointer :: ptr_f => null()
type(c_ptr), intent(in) :: ptr_c
integer(c_int), intent(in) :: i_spec
real(c_double), intent(out) :: vol
call c_f_pointer(ptr_c, ptr_f)
vol = aero_particle_species_volume(ptr_f, i_spec+1)
end subroutine
subroutine f_aero_particle_dry_volume(aero_particle_ptr_c, aero_data_ptr_c, vol) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
real(c_double), intent(out) :: vol
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
vol = aero_particle_dry_volume(aero_particle_ptr_f, aero_data_ptr_f)
end subroutine
subroutine f_aero_particle_radius(aero_particle_ptr_c, aero_data_ptr_c, radius) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
real(c_double), intent(out) :: radius
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
radius = aero_particle_radius(aero_particle_ptr_f, aero_data_ptr_f)
end subroutine
subroutine f_aero_particle_dry_radius(aero_particle_ptr_c, aero_data_ptr_c, radius) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
real(c_double), intent(out) :: radius
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
radius = aero_particle_dry_radius(aero_particle_ptr_f, aero_data_ptr_f)
end subroutine
subroutine f_aero_particle_diameter(aero_particle_ptr_c, aero_data_ptr_c, diameter) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
real(c_double), intent(out) :: diameter
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
diameter = aero_particle_diameter(aero_particle_ptr_f, aero_data_ptr_f)
end subroutine
subroutine f_aero_particle_dry_diameter(aero_particle_ptr_c, aero_data_ptr_c, diameter) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
real(c_double), intent(out) :: diameter
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
diameter = aero_particle_dry_diameter(aero_particle_ptr_f, aero_data_ptr_f)
end subroutine
subroutine f_aero_particle_mass(aero_particle_ptr_c, aero_data_ptr_c, mass) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
real(c_double), intent(out) :: mass
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
mass = aero_particle_mass(aero_particle_ptr_f, aero_data_ptr_f)
end subroutine
subroutine f_aero_particle_species_mass( &
aero_particle_ptr_c, &
i_spec, &
aero_data_ptr_c, &
mass &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
integer(c_int), intent(in) :: i_spec
real(c_double), intent(out) :: mass
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
mass = aero_particle_species_mass(aero_particle_ptr_f, i_spec+1, aero_data_ptr_f)
end subroutine
subroutine f_aero_particle_species_masses( &
aero_particle_ptr_c, &
aero_data_ptr_c, &
size_masses, &
masses &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
integer(c_int), intent(in) :: size_masses
real(c_double), dimension(size_masses), intent(out) :: masses
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
masses = aero_particle_species_masses(aero_particle_ptr_f, aero_data_ptr_f)
end subroutine
subroutine f_aero_particle_solute_kappa(aero_particle_ptr_c, aero_data_ptr_c, kappa) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
real(c_double), intent(out) :: kappa
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
kappa = aero_particle_solute_kappa(aero_particle_ptr_f, aero_data_ptr_f)
end subroutine
subroutine f_aero_particle_moles(aero_particle_ptr_c, aero_data_ptr_c, moles) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
real(c_double), intent(out) :: moles
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
moles = aero_particle_moles(aero_particle_ptr_f, aero_data_ptr_f)
end subroutine
subroutine f_aero_particle_mobility_diameter( &
aero_particle_ptr_c, &
aero_data_ptr_c, &
env_state_ptr_c, &
mobility_diameter &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(env_state_t), pointer :: env_state_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c, &
env_state_ptr_c
real(c_double), intent(out) :: mobility_diameter
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
call c_f_pointer(env_state_ptr_c, env_state_ptr_f)
mobility_diameter = aero_particle_mobility_diameter( &
aero_particle_ptr_f, &
aero_data_ptr_f, &
env_state_ptr_f &
)
end subroutine
subroutine f_aero_particle_density( &
aero_particle_ptr_c, &
aero_data_ptr_c, &
density &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
real(c_double), intent(out) :: density
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
density = aero_particle_density( &
aero_particle_ptr_f, &
aero_data_ptr_f &
)
end subroutine
subroutine f_aero_particle_approx_crit_rel_humid( &
aero_particle_ptr_c, &
aero_data_ptr_c, &
env_state_ptr_c, &
approx_crit_rel_humid &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(env_state_t), pointer :: env_state_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c, &
env_state_ptr_c
real(c_double), intent(out) :: approx_crit_rel_humid
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
call c_f_pointer(env_state_ptr_c, env_state_ptr_f)
approx_crit_rel_humid = aero_particle_approx_crit_rel_humid( &
aero_particle_ptr_f, &
aero_data_ptr_f, &
env_state_ptr_f &
)
end subroutine
subroutine f_aero_particle_crit_rel_humid( &
aero_particle_ptr_c, &
aero_data_ptr_c, &
env_state_ptr_c, &
crit_rel_humid &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(env_state_t), pointer :: env_state_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c, &
env_state_ptr_c
real(c_double), intent(out) :: crit_rel_humid
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
call c_f_pointer(env_state_ptr_c, env_state_ptr_f)
crit_rel_humid = aero_particle_crit_rel_humid( &
aero_particle_ptr_f, &
aero_data_ptr_f, &
env_state_ptr_f &
)
end subroutine
subroutine f_aero_particle_crit_diameter( &
aero_particle_ptr_c, &
aero_data_ptr_c, &
env_state_ptr_c, &
crit_diameter &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(env_state_t), pointer :: env_state_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c, &
env_state_ptr_c
real(c_double), intent(out) :: crit_diameter
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
call c_f_pointer(env_state_ptr_c, env_state_ptr_f)
crit_diameter = aero_particle_crit_diameter( &
aero_particle_ptr_f, &
aero_data_ptr_f, &
env_state_ptr_f &
)
end subroutine
subroutine f_aero_particle_coagulate( &
aero_particle_1_ptr_c, &
aero_particle_2_ptr_c, &
aero_particle_new_ptr_c &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_1_ptr_f => null()
type(aero_particle_t), pointer :: aero_particle_2_ptr_f => null()
type(aero_particle_t), pointer :: aero_particle_new_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_1_ptr_c, aero_particle_2_ptr_c
type(c_ptr), intent(inout) :: aero_particle_new_ptr_c
call c_f_pointer(aero_particle_1_ptr_c, aero_particle_1_ptr_f)
call c_f_pointer(aero_particle_2_ptr_c, aero_particle_2_ptr_f)
call c_f_pointer(aero_particle_new_ptr_c, aero_particle_new_ptr_f)
call aero_particle_coagulate( &
aero_particle_1_ptr_f, &
aero_particle_2_ptr_f, &
aero_particle_new_ptr_f &
)
aero_particle_new_ptr_c = c_loc(aero_particle_new_ptr_f)
end subroutine
subroutine f_aero_particle_zero( &
aero_particle_ptr_c, &
aero_data_ptr_c &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(aero_data_t), pointer :: aero_data_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c, aero_data_ptr_c
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call c_f_pointer(aero_data_ptr_c, aero_data_ptr_f)
call aero_particle_zero( &
aero_particle_ptr_f, &
aero_data_ptr_f &
)
end subroutine
subroutine f_aero_particle_set_vols( &
aero_particle_ptr_c, &
vol_size, &
volumes &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
integer(c_int), intent(in) :: vol_size
real(c_double), dimension(vol_size), intent(in) :: volumes
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call aero_particle_set_vols( &
aero_particle_ptr_f, &
volumes &
)
end subroutine
subroutine f_aero_particle_absorb_cross_sect( &
aero_particle_ptr_c, &
absorb_cross_sect, &
n_wavelengths &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
integer(c_int), intent(in) :: n_wavelengths
real(c_double), dimension(n_wavelengths), intent(out) :: absorb_cross_sect
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
absorb_cross_sect = aero_particle_ptr_f%absorb_cross_sect
end subroutine
subroutine f_aero_particle_scatter_cross_sect( &
aero_particle_ptr_c, &
scatter_cross_sect, &
n_wavelengths &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
integer(c_int), intent(in) :: n_wavelengths
real(c_double), dimension(n_wavelengths), intent(out) :: scatter_cross_sect
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
scatter_cross_sect = aero_particle_ptr_f%scatter_cross_sect
end subroutine
subroutine f_aero_particle_asymmetry( &
aero_particle_ptr_c, &
asymmetry, &
n_wavelengths &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
integer(c_int), intent(in) :: n_wavelengths
real(c_double), dimension(n_wavelengths), intent(out) :: asymmetry
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
asymmetry = aero_particle_ptr_f%asymmetry
end subroutine
subroutine f_aero_particle_greatest_create_time( &
aero_particle_ptr_c, &
greatest_create_time &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
real(c_double), intent(out) :: greatest_create_time
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
greatest_create_time = aero_particle_ptr_f%greatest_create_time
end subroutine
subroutine f_aero_particle_least_create_time( &
aero_particle_ptr_c, &
least_create_time &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
real(c_double), intent(out) :: least_create_time
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
least_create_time = aero_particle_ptr_f%least_create_time
end subroutine
subroutine f_aero_particle_n_orig_part( &
aero_particle_ptr_c, &
n_orig_part, &
n_orig_part_size &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
integer(c_int), intent(in) :: n_orig_part_size
integer(c_int), dimension(n_orig_part_size), intent(out) :: n_orig_part
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
n_orig_part = 1 !aero_particle_ptr_f%n_orig_part
end subroutine
subroutine f_aero_particle_get_component_sources( &
aero_particle_ptr_c, &
source_list, &
n_sources &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
integer(c_int), intent(in) :: n_sources
integer(c_int), dimension(n_sources), intent(inout) :: source_list
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
call aero_particle_get_component_sources(aero_particle_ptr_f, source_list)
end subroutine
subroutine f_aero_particle_id( &
aero_particle_ptr_c, &
id &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
integer(c_int64_t), intent(out) :: id
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
id = aero_particle_ptr_f%id
end subroutine
subroutine f_aero_particle_refract_shell( &
aero_particle_ptr_c, &
refract_shell, &
n_wavelengths &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
integer(c_int), intent(in) :: n_wavelengths
complex(c_double_complex), dimension(n_wavelengths), intent(out) :: refract_shell
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
refract_shell = aero_particle_ptr_f%refract_shell
end subroutine
subroutine f_aero_particle_refract_core( &
aero_particle_ptr_c, &
refract_core, &
n_wavelengths &
) bind(C)
type(aero_particle_t), pointer :: aero_particle_ptr_f => null()
type(c_ptr), intent(in) :: aero_particle_ptr_c
integer(c_int), intent(in) :: n_wavelengths
complex(c_double_complex), dimension(n_wavelengths), intent(out) :: refract_core
call c_f_pointer(aero_particle_ptr_c, aero_particle_ptr_f)
refract_core = aero_particle_ptr_f%refract_core
end subroutine
end module