-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathampsci.in
72 lines (59 loc) · 1.01 KB
/
ampsci.in
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
// Example "template" ampsci input file.
// Lines with "//" are ignored
// Comment out an entire block (or just its name) to skip block
// run as:
// $ ./ampsci ampsci.in
Atom {
Z = Cs;
A;
}
HartreeFock {
core = [Xe];
valence = 7sp;
// Breit = 0.0;
}
Nucleus {
rrms; // Will look-up default value
type; // Fermi (dflt), spherical, point
}
Grid {
r0 = 1e-6;
rmax = 120.0;
num_points = 2000;
}
// RadPot { }
Basis {
number = 40;
order = 7;
r0_eps = 1.0e-6;
rmax = 30.0;
print = false;
states = 35spdfghi;
}
// Correlations {
// n_min_core = 3;
// fitTo_cm;
// lambda_kappa;
// }
Spectrum {
number = 100;
order = 7;
r0_eps = 1.0e-9;
rmax = 100.0;
print = false;
states = 90p;
}
/////////////////////////////////////////////////////////////////
// Modules:
Module::Tests {}
Module::matrixElements { operator = E1; }
Module::matrixElements { operator = E1; omega = each; }
/*
Module::matrixElements {
operator = hfs;
rpa = false;
options{
nuc_mag = pointlike;
}
}
*/