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
use serde::{Deserialize,Serialize};
use std::fs;
use crate::{geom_io::{GeomCell,MOrC, GeomUnit}, dft::{DFAFamily, DFA4REST}, utilities};
use rayon::ThreadPoolBuilder;
use serde_json;
use toml;
pub enum SCFType {
RHF,
ROHF,
UHF
}
#[derive(Debug,Clone)]
pub struct InputKeywords {
pub print_level: usize,
pub basis_path: String,
pub basis_type: String,
pub auxbas_path: String,
pub auxbas_type: String,
pub use_auxbas: bool,
pub eri_type: String,
pub xc: String,
pub charge: f64,
pub spin: f64,
pub spin_channel: usize,
pub spin_polarization: bool,
pub frozen_core_postscf: i32,
pub frequency_points: usize,
pub freq_grid_type: usize,
pub freq_cut_off: f64,
pub radial_precision: f64,
pub min_num_angular_points: usize,
pub max_num_angular_points: usize,
pub grid_gen_level: usize,
pub hardness: usize,
pub pruning: String,
pub rad_grid_method: String,
pub external_grids: String,
pub even_tempered_basis: String,
pub etb_start_atom_number: usize,
pub etb_beta: f64,
pub mixer: String,
pub mix_param: f64,
pub num_max_diis: usize,
pub start_diis_cycle: usize,
pub max_scf_cycle: usize,
pub scf_acc_rho: f64,
pub scf_acc_eev: f64,
pub scf_acc_etot:f64,
pub chkfile: String,
pub restart: bool,
pub guessfile: String,
pub external_init_guess: bool,
pub initial_guess: String,
pub noiter: bool,
pub check_stab: bool,
pub fciqmc_dump: bool,
pub wfn_in_real_space: usize,
pub cube: bool,
pub molden: bool,
pub num_threads: Option<usize>
}
impl InputKeywords {
pub fn new() -> InputKeywords {
InputKeywords{
print_level: 0,
num_threads: None,
basis_path: String::from("./"),
basis_type: String::from("spheric"),
auxbas_path: String::from("./"),
auxbas_type: String::from("spheric"),
use_auxbas: false,
xc: String::from("b3lyp"),
eri_type: String::from("ri-v"),
charge: 0.0_f64,
spin: 1.0_f64,
spin_channel: 1_usize,
spin_polarization: false,
frozen_core_postscf: 0_i32,
frequency_points: 20_usize,
freq_grid_type: 0_usize,
freq_cut_off: 10.0_f64,
radial_precision: 1.0e-12,
min_num_angular_points: 110,
max_num_angular_points: 110,
hardness: 3,
grid_gen_level: 3,
pruning: String::from("sg1"),
rad_grid_method: String::from("treutler"),
external_grids: "none".to_string(),
even_tempered_basis: String::from("none"),
etb_start_atom_number: 37,
etb_beta: 2.0,
chkfile: String::from("none"),
guessfile: String::from("none"),
mixer: String::from("direct"),
mix_param: 1.0,
num_max_diis: 2,
start_diis_cycle: 2,
max_scf_cycle: 100,
scf_acc_rho: 1.0e-6,
scf_acc_eev: 1.0e-5,
scf_acc_etot:1.0e-8,
restart: false,
external_init_guess: false,
initial_guess: String::from("hcore"),
noiter: false,
check_stab: false,
fciqmc_dump: false,
wfn_in_real_space: 0,
cube: false,
molden: false,
}
}
pub fn parse_ctl_from_json(tmp_keys: &serde_json::Value) -> anyhow::Result<(InputKeywords,GeomCell)> {
let mut tmp_input = InputKeywords::new();
let mut tmp_geomcell = GeomCell::new();
match tmp_keys.get("ctrl").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::Object(tmp_ctrl) => {
tmp_input.print_level = match tmp_ctrl.get("print_level").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(1_usize)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_i64().unwrap_or(1) as usize},
other => {1_usize},
};
println!("Print level: {}", tmp_input.print_level);
tmp_input.num_threads = match tmp_ctrl.get("num_threads").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {Some(tmp_str.to_lowercase().parse().unwrap())},
serde_json::Value::Number(tmp_num) => {Some(tmp_num.as_i64().unwrap() as usize)},
other => {None},
};
if let Some(num_threads) = tmp_input.num_threads {
println!("The number of threads used for parallelism: {}", num_threads);
rayon::ThreadPoolBuilder::new().num_threads(num_threads).build_global()?;
unsafe{utilities::openblas_set_num_threads(num_threads as i32)};
} else {
unsafe{utilities::openblas_set_num_threads(rayon::current_num_threads() as i32)};
println!("The default rayon num_threads value is used: {}", rayon::current_num_threads());
};
tmp_input.basis_path = match tmp_ctrl.get("basis_path").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_bas) => {
if ! std::path::Path::new(tmp_bas).is_dir() {
println!("The specified folder for the basis sets is missing: ({})", tmp_bas);
println!("REST trys to fetch the basis sets from the basis-set exchange pool (https://www.basissetexchange.org/)");
};
tmp_bas.clone()
},
other => {
if ! std::path::Path::new(&String::from("./")).is_dir() {
panic!("The specified folder for the basis sets is missing: (./)");
};
String::from("./")
}
};
tmp_input.basis_type = match tmp_ctrl.get("basis_type").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_type) => {tmp_type.to_lowercase()},
other => {String::from("spheric")}
};
println!("The {}-GTO basis set is taken from {}", tmp_input.basis_type,tmp_input.basis_path);
tmp_input.pruning = match tmp_ctrl.get("pruning").unwrap_or(&serde_json::Value::Null){
serde_json::Value::String(tmp_type) => {tmp_type.to_lowercase()},
other => {String::from("sg1")} };
println!("The pruning method will be {}", tmp_input.pruning);
tmp_input.rad_grid_method = match tmp_ctrl.get("radial_grid_method").unwrap_or(&serde_json::Value::Null){
serde_json::Value::String(tmp_type) => {tmp_type.to_lowercase()},
other => {String::from("treutler")} };
println!("The radial grid generation method will be {}", tmp_input.rad_grid_method);
tmp_input.eri_type = match tmp_ctrl.get("eri_type").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_eri) => {
if tmp_eri.to_lowercase().eq("ri_v") || tmp_eri.to_lowercase().eq("ri-v")
{
String::from("ri_v")
} else {tmp_eri.to_lowercase()}
},
other => {String::from("analytic")},
};
if tmp_input.eri_type.eq(&String::from("ri_v")) ||
tmp_input.eri_type.eq(&String::from("ri-v"))
{
tmp_input.use_auxbas = true
} else {
tmp_input.use_auxbas = false
};
println!("ERI Type: {}", tmp_input.eri_type);
tmp_input.auxbas_type = match tmp_ctrl.get("auxbas_type").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_type) => {tmp_type.to_lowercase()},
other => {String::from("spheric")}
};
tmp_input.auxbas_path = match tmp_ctrl.get("auxbas_path").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_bas) => {
if ! std::path::Path::new(tmp_bas).is_dir() {
println!("The specified folder for the auxiliar basis sets is missing: ({})", tmp_bas);
}
tmp_bas.clone()
},
other => {
println!("No auxiliary basis set is specified");
let default_bas = String::from("./");
if ! std::path::Path::new(&default_bas).is_dir() {
} else {
}
default_bas
}
};
if tmp_input.use_auxbas {
println!("The {}-GTO auxiliary basis set is taken from {}", tmp_input.auxbas_type,tmp_input.auxbas_path)
};
tmp_input.xc = match tmp_ctrl.get("xc").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_xc) => {tmp_xc.to_lowercase()},
other => {String::from("hf")},
};
println!("The exchange-correlation method: {}", tmp_input.xc);
tmp_input.charge = match tmp_ctrl.get("charge").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_charge) => {tmp_charge.to_lowercase().parse().unwrap_or(0.0)},
serde_json::Value::Number(tmp_charge) => {tmp_charge.as_f64().unwrap_or(0.0)},
other => {0.0},
};
tmp_input.spin = match tmp_ctrl.get("spin").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_spin) => {tmp_spin.to_lowercase().parse().unwrap_or(0.0)},
serde_json::Value::Number(tmp_spin) => {tmp_spin.as_f64().unwrap_or(0.0)},
other => {0.0},
};
println!("Charge: {:3}; Spin: {:3}",tmp_input.charge,tmp_input.spin);
tmp_input.spin_polarization = match tmp_ctrl.get("spin_polarization").unwrap_or(&serde_json::Value::Null) {
serde_json::Value:: String(tmp_str) => tmp_str.to_lowercase().parse().unwrap_or(false),
serde_json::Value:: Bool(tmp_bool) => tmp_bool.clone(),
other => false,
};
tmp_input.spin_channel = if tmp_input.spin_polarization {
println!("Spin polarization: On");
2_usize
} else {
println!("Spin polarization: Off");
1_usize
};
tmp_input.frozen_core_postscf = match tmp_ctrl.get("frozen_core_postscf").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_fc) => {tmp_fc.to_lowercase().parse().unwrap_or(0)},
serde_json::Value::Number(tmp_fc) => {tmp_fc.as_i64().unwrap_or(0) as i32},
other => {0},
};
tmp_input.frequency_points = match tmp_ctrl.get("frequency_points").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_fp) => {tmp_fp.to_lowercase().parse().unwrap_or(20_usize)},
serde_json::Value::Number(tmp_fp) => {tmp_fp.as_i64().unwrap_or(20) as usize},
other => {20_usize},
};
tmp_input.freq_grid_type = match tmp_ctrl.get("freq_grid_type").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_fg) => {tmp_fg.to_lowercase().parse().unwrap_or(0)},
serde_json::Value::Number(tmp_fg) => {tmp_fg.as_i64().unwrap_or(0) as usize},
other => {0},
};
tmp_input.freq_cut_off = match tmp_ctrl.get("freq_cut_off").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_fg) => {tmp_fg.to_lowercase().parse().unwrap_or(10.0)},
serde_json::Value::Number(tmp_fg) => {tmp_fg.as_f64().unwrap_or(10.0)},
other => {10.0},
};
tmp_input.fciqmc_dump = match tmp_ctrl.get("fciqmc_dump").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::Bool(tmp_bool) => {tmp_bool.clone()},
other => {false},
};
tmp_input.radial_precision = match tmp_ctrl.get("radial_precision").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(1.0e-12)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_f64().unwrap_or(1.0e-12)},
other => {1.0e-12}
};
tmp_input.min_num_angular_points = match tmp_ctrl.get("min_num_angular_points").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(110_usize)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_i64().unwrap_or(110) as usize},
other => {110_usize}
};
tmp_input.max_num_angular_points = match tmp_ctrl.get("max_num_angular_points").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(590_usize)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_i64().unwrap_or(590) as usize},
other => {590_usize}
};
tmp_input.hardness = match tmp_ctrl.get("hardness").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(3_usize)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_i64().unwrap_or(3) as usize},
other => {3_usize}
};
println!("min_num_angular_points: {}", tmp_input.min_num_angular_points);
println!("max_num_angular_points: {}", tmp_input.max_num_angular_points);
println!("hardness: {}", tmp_input.hardness);
tmp_input.external_grids = match tmp_ctrl.get("external_grids").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_type) => {tmp_type.to_string()},
other => {String::from("grids")}
};
tmp_input.grid_gen_level = match tmp_ctrl.get("grid_generation_level").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(3_usize)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_i64().unwrap_or(3) as usize},
other => {3_usize},
};
println!("Grid generation level: {}", tmp_input.grid_gen_level);
tmp_input.even_tempered_basis = match tmp_ctrl.get("even_tempered_basis").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(String::from("none"))},
other => {String::from("none")},
};
println!("Even tempered basis generation: {}", tmp_input.even_tempered_basis);
tmp_input.etb_start_atom_number = match tmp_ctrl.get("etb_start_atom_number").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(37_usize)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_i64().unwrap_or(37) as usize},
other => {37_usize},
};
tmp_input.etb_beta = match tmp_ctrl.get("etb_beta").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(2.0_f64)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_i64().unwrap_or(2) as f64},
other => {2.0_f64},
};
if tmp_input.even_tempered_basis != String::from("none") {
println!("Even tempered basis generation starts at: {}", tmp_input.etb_start_atom_number);
println!("Even tempered basis beta is: {}", tmp_input.etb_beta);
}
tmp_input.max_scf_cycle = match tmp_ctrl.get("max_scf_cycle").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(100_usize)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_i64().unwrap_or(100) as usize},
other => {100_usize}
};
tmp_input.scf_acc_rho = match tmp_ctrl.get("scf_acc_rho").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(1.0e-6)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_f64().unwrap_or(1.0e-6)},
other => {1.0e-6}
};
tmp_input.scf_acc_eev = match tmp_ctrl.get("scf_acc_eev").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(1.0e-6)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_f64().unwrap_or(1.0e-6)},
other => {1.0e-6}
};
tmp_input.scf_acc_etot = match tmp_ctrl.get("scf_acc_etot").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(1.0e-8)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_f64().unwrap_or(1.0e-8)},
other => {1.0e-6}
};
println!("SCF convergency thresholds: {:e} for density matrix", tmp_input.scf_acc_rho);
println!(" {:e} Ha. for sum of eigenvalues", tmp_input.scf_acc_eev);
println!(" {:e} Ha. for total energy", tmp_input.scf_acc_etot);
println!("Max. SCF cycle number: {}", tmp_input.max_scf_cycle);
tmp_input.mixer = match tmp_ctrl.get("mixer").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase()},
other => {String::from("direct")},
};
tmp_input.mix_param = match tmp_ctrl.get("mix_param").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(1.0)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_f64().unwrap_or(1.0)},
other => {1.0}
};
tmp_input.num_max_diis = match tmp_ctrl.get("num_max_diis").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(2_usize)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_i64().unwrap_or(2) as usize},
other => {2_usize}
};
tmp_input.start_diis_cycle = match tmp_ctrl.get("start_diis_cycle").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase().parse().unwrap_or(2_usize)},
serde_json::Value::Number(tmp_num) => {tmp_num.as_i64().unwrap_or(2) as usize},
other => {2_usize}
};
let tmp_mixer = tmp_input.mixer.clone();
if tmp_mixer.eq(&"direct") {
println!("No charge density mixing is employed for the SCF procedure");
} else if tmp_mixer.eq(&"linear") {
println!("The {} mixing is employed with the mixing parameter of {} for the SCF procedure",
&tmp_mixer, &tmp_input.mix_param);
} else if tmp_mixer.eq(&"ddiis")
|| tmp_mixer.eq(&"diis") {
println!("The {} mixing with (param, max_vec_len) = ({}, {}) is employed for the SCF procedure",
&tmp_mixer, &tmp_input.mix_param, &tmp_input.num_max_diis);
println!("Turn on the {} mixing after {} step(s) of SCF iteractions with the linear mixing",
&tmp_mixer, &tmp_input.start_diis_cycle);
} else {
tmp_input.mixer = String::from("direct");
println!("Unknown charge density mixer ({})! No charge density mixing will be invoked.", tmp_input.mixer);
};
tmp_input.guessfile = match tmp_ctrl.get("guessfile").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_guess) => tmp_guess.to_lowercase().clone(),
other => String::from("none"),
};
tmp_input.external_init_guess = ! tmp_input.guessfile.to_lowercase().eq(&"none") &&
std::path::Path::new(&tmp_input.guessfile).exists();
if tmp_input.external_init_guess {
println!("The initial guess will be imported from \n({}).\n ",&tmp_input.guessfile)
} else if ! std::path::Path::new(&tmp_input.guessfile).exists() {
println!("WARNING: The specified external initial guess file (guessfile) is missing \n({}). \n The external initial guess will not be imported.\n",&tmp_input.guessfile)
}
tmp_input.chkfile = match tmp_ctrl.get("chkfile").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_chk) => tmp_chk.to_lowercase().clone(),
other => String::from("none"),
};
tmp_input.restart = ! tmp_input.chkfile.to_lowercase().eq(&"none");
if tmp_input.restart && ! std::path::Path::new(&tmp_input.chkfile).exists() {
println!("The specified checkfile is missing, which will be created after the SCF procedure \n({})",&tmp_input.chkfile)
} else if tmp_input.restart && ! tmp_input.external_init_guess {
println!("The initial guess will be obtained from the existing checkfile \n({})",&tmp_input.chkfile)
} else {
println!("The specified checkfile exists but is not loaded because of 'external_init_guess");
println!("It will be updated after the SCF procedure \n({})",&tmp_input.chkfile)
};
tmp_input.initial_guess = match tmp_ctrl.get("initial_guess").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase()},
other => {String::from("vsap")},
};
println!("Initial guess is prepared by ({}).", &tmp_input.initial_guess);
tmp_input.noiter = match tmp_ctrl.get("noiter").unwrap_or(&serde_json::Value::Null) {
serde_json::Value:: String(tmp_str) => tmp_str.to_lowercase().parse().unwrap_or(false),
serde_json::Value:: Bool(tmp_bool) => tmp_bool.clone(),
other => false,
};
tmp_input.check_stab = match tmp_ctrl.get("check_stab").unwrap_or(&serde_json::Value::Null) {
serde_json::Value:: String(tmp_str) => tmp_str.to_lowercase().parse().unwrap_or(false),
serde_json::Value:: Bool(tmp_bool) => tmp_bool.clone(),
other => false,
};
tmp_input.wfn_in_real_space = match tmp_ctrl.get("wfn_in_real_space").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_wfn) => {tmp_wfn.to_lowercase().parse().unwrap_or(0)},
serde_json::Value::Number(tmp_wfn) => {tmp_wfn.as_i64().unwrap_or(0) as usize},
other => {0_usize},
};
tmp_input.cube = match tmp_ctrl.get("cube").unwrap_or(&serde_json::Value::Null) {
serde_json::Value:: String(tmp_str) => tmp_str.to_lowercase().parse().unwrap_or(false),
serde_json::Value:: Bool(tmp_bool) => tmp_bool.clone(),
other => false,
};
tmp_input.molden = match tmp_ctrl.get("molden").unwrap_or(&serde_json::Value::Null) {
serde_json::Value:: String(tmp_str) => tmp_str.to_lowercase().parse().unwrap_or(false),
serde_json::Value:: Bool(tmp_bool) => tmp_bool.clone(),
other => false,
};
},
other => {
panic!("Error:: no 'ctrl' keyword or some inproper settings of the 'ctrl' keyword in the input file")
},
}
match tmp_keys.get("geom").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::Object(tmp_geom) => {
tmp_geomcell.name = match tmp_geom.get("name").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.clone()},
other => {String::from("none")},
};
let tmp_unit = match tmp_geom.get("unit").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::String(tmp_str) => {tmp_str.to_lowercase()},
other => {String::from("angstrom")},
};
if tmp_unit.to_lowercase()==String::from("angstrom") {
tmp_geomcell.unit=GeomUnit::Angstrom;
} else if tmp_unit.to_lowercase()==String::from("bohr") {
tmp_geomcell.unit=GeomUnit::Bohr
} else {
println!("Warning:: unknown geometry unit is specified: {}. Angstrom will be used", tmp_unit);
tmp_geomcell.unit=GeomUnit::Angstrom;
};
match tmp_geom.get("position").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::Array(tmp_vec) => {
let tmp_unit = tmp_geomcell.unit.clone();
let (tmp1,tmp2,tmp3,tmp4) = GeomCell::parse_position(tmp_vec, &tmp_unit)?;
tmp_geomcell.elem = tmp1;
tmp_geomcell.fix = tmp2;
tmp_geomcell.position = tmp3;
tmp_geomcell.nfree = tmp4;
},
other => {
panic!("Error in reading the geometry position")
}
};
match tmp_geom.get("lattice").unwrap_or(&serde_json::Value::Null) {
serde_json::Value::Array(tmp_vec) => {
let tmp_unit = tmp_geomcell.unit.clone();
tmp_geomcell.lattice = GeomCell::parse_lattice(tmp_vec, &tmp_unit)?;
tmp_geomcell.pbc = MOrC::Crystal;
panic!("Find lattice vectors. PBC calculations should be turn on, which, however, is not yet implemented");
},
other => {
println!("It is a cluster calculation for finite molecules");
tmp_geomcell.pbc = MOrC::Molecule;
}
}
},
other => {
panic!("Error:: no 'geom' keyword or some inproper settings of 'geom' keyword in the input file");
},
}
Ok((tmp_input,tmp_geomcell))
}
pub fn parse_ctl(filename: String) -> anyhow::Result<(InputKeywords,GeomCell)> {
let tmp_cont = fs::read_to_string(&filename[..])?;
let tmp_keys = if let Ok(tmp_json) = serde_json::from_str::<serde_json::Value>(&tmp_cont[..]) {
tmp_json
} else {
toml::from_str::<serde_json::Value>(&tmp_cont[..])?
};
InputKeywords::parse_ctl_from_json(&tmp_keys)
}
}