FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
abacus-develop/source/source_io/print_info.cpp at develop · pplab/abacus-develop · GitHub
pplab
/
abacus-develop
Public
forked from
deepmodeling/abacus-develop
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
abacus-develop
/
source
/
source_io
/
print_info.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
387 lines (323 loc) · 15.3 KB
Breadcrumbs
abacus-develop
/
source
/
source_io
/
print_info.cpp
Copy path
File metadata and controls
387 lines (323 loc) · 15.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#
include
"
print_info.h
"
#
include
"
source_base/global_variable.h
"
#
include
"
source_io/module_parameter/parameter.h
"
namespace
ModuleIO
{
void
setup_parameters
(UnitCell& ucell, K_Vectors& kv)
{
ModuleBase::TITLE
(
"
ModuleIO
"
,
"
setup_parameters
"
);
if
(
PARAM
.
inp
.
calculation
==
"
scf
"
||
PARAM
.
inp
.
calculation
==
"
relax
"
||
PARAM
.
inp
.
calculation
==
"
cell-relax
"
||
PARAM
.
inp
.
calculation
==
"
nscf
"
||
PARAM
.
inp
.
calculation
==
"
get_pchg
"
||
PARAM
.
inp
.
calculation
==
"
get_wf
"
||
PARAM
.
inp
.
calculation
==
"
md
"
)
{
std::cout <<
"
---------------------------------------------------------
"
<< std::endl;
if
(
PARAM
.
inp
.
calculation
==
"
scf
"
)
{
std::cout <<
"
Self-consistent calculations for electrons
"
<< std::endl;
}
else
if
(
PARAM
.
inp
.
calculation
==
"
test
"
)
{
std::cout <<
"
Test run
"
<< std::endl;
}
if
(
PARAM
.
inp
.
calculation
==
"
relax
"
)
{
std::cout <<
"
Ion relaxation calculations
"
<< std::endl;
}
if
(
PARAM
.
inp
.
calculation
==
"
cell-relax
"
)
{
std::cout <<
"
Cell relaxation calculations
"
<< std::endl;
}
if
(
PARAM
.
inp
.
calculation
==
"
md
"
)
{
std::cout <<
"
Molecular Dynamics simulations
"
<< std::endl;
std::cout <<
"
---------------------------------------------------------
"
<< std::endl;
if
(
PARAM
.
mdp
.
md_type
==
"
fire
"
)
{
std::cout <<
"
ENSEMBLE :
"
<<
"
FIRE
"
<< std::endl;
}
else
if
(
PARAM
.
mdp
.
md_type
==
"
nve
"
)
{
std::cout <<
"
ENSEMBLE :
"
<<
"
NVE
"
<< std::endl;
}
else
if
(
PARAM
.
mdp
.
md_type
==
"
nvt
"
)
{
std::cout <<
"
ENSEMBLE :
"
<<
"
NVT mode:
"
<<
PARAM
.
mdp
.
md_thermostat
<< std::endl;
}
else
if
(
PARAM
.
mdp
.
md_type
==
"
npt
"
)
{
std::cout <<
"
ENSEMBLE :
"
<<
"
NPT mode:
"
<<
PARAM
.
mdp
.
md_pmode
<< std::endl;
}
else
if
(
PARAM
.
mdp
.
md_type
==
"
langevin
"
)
{
std::cout <<
"
ENSEMBLE :
"
<<
"
Langevin
"
<< std::endl;
}
else
if
(
PARAM
.
mdp
.
md_type
==
"
msst
"
)
{
std::cout <<
"
ENSEMBLE :
"
<<
"
MSST
"
<< std::endl;
}
std::cout <<
"
Time interval(fs) :
"
<<
PARAM
.
mdp
.
md_dt
<< std::endl;
}
std::cout <<
"
---------------------------------------------------------
"
<< std::endl;
std::cout <<
"
"
<<
std::setw
(
8
) <<
"
SPIN
"
<<
std::setw
(
16
) <<
"
KPOINTS
"
<<
std::setw
(
12
) <<
"
PROCESSORS
"
<<
std::setw
(
12
) <<
"
THREADS
"
;
const
bool
orbinfo = (
PARAM
.
inp
.
basis_type
==
"
lcao
"
||
PARAM
.
inp
.
basis_type
==
"
lcao_in_pw
"
|| (
PARAM
.
inp
.
basis_type
==
"
pw
"
&&
PARAM
.
inp
.
init_wfc
.
substr
(
0
,
3
) ==
"
nao
"
));
if
(orbinfo) { std::cout <<
std::setw
(
12
) <<
"
NBASE
"
; }
std::cout << std::endl;
std::cout <<
"
"
<<
std::setw
(
8
) <<
PARAM
.
inp
.
nspin
;
if
(
PARAM
.
globalv
.
gamma_only_local
)
{
std::cout <<
std::setw
(
16
) <<
"
Gamma
"
;
}
else
{
std::cout <<
std::setw
(
16
) << kv.
get_nkstot
();
}
std::cout <<
std::setw
(
12
) << GlobalV::
NPROC
<<
std::setw
(
12
) <<
PARAM
.
globalv
.
nthread_per_proc
* GlobalV::
NPROC
;
if
(orbinfo) { std::cout <<
std::setw
(
12
) <<
PARAM
.
globalv
.
nlocal
; }
std::cout << std::endl;
std::cout <<
"
---------------------------------------------------------
"
<< std::endl;
if
(
PARAM
.
inp
.
basis_type
==
"
lcao
"
)
{
std::cout <<
"
Use Systematically Improvable Atomic bases
"
<< std::endl;
}
else
if
(
PARAM
.
inp
.
basis_type
==
"
lcao_in_pw
"
)
{
std::cout <<
"
Expand Atomic bases into plane waves
"
<< std::endl;
}
else
if
(
PARAM
.
inp
.
basis_type
==
"
pw
"
)
{
std::cout <<
"
Use plane wave basis
"
<< std::endl;
}
std::cout <<
"
---------------------------------------------------------
"
<< std::endl;
//
----------------------------------
//
second part
//
----------------------------------
std::cout <<
"
"
<<
std::setw
(
8
) <<
"
ELEMENT
"
;
if
(orbinfo)
{
std::cout <<
std::setw
(
16
) <<
"
ORBITALS
"
;
std::cout <<
std::setw
(
12
) <<
"
NBASE
"
;
}
std::cout <<
std::setw
(
12
) <<
"
NATOM
"
;
std::cout <<
std::setw
(
12
) <<
"
XC
"
;
std::cout << std::endl;
const
std::string spectrum =
"
spdfghi
"
;
for
(
int
it=
0
; it<ucell.
ntype
; ++it)
{
std::cout <<
"
"
<<
std::setw
(
8
) << ucell.
atoms
[it].
label
;
if
(orbinfo)
{
std::stringstream orb;
int
norb =
0
;
for
(
int
L=
0
; L<=ucell.
atoms
[it].
nwl
; ++L)
//
pengfei Li 16-2-29
{
norb += (
2
*L+
1
)* ucell.
atoms
[it].
l_nchi
[L];
orb << ucell.
atoms
[it].
l_nchi
[L];
orb << spectrum[L];
}
orb <<
"
-
"
<< ucell.
atoms
[it].
Rcut
<<
"
au
"
;
std::cout <<
std::setw
(
16
) << orb.
str
();
std::cout <<
std::setw
(
12
) << norb;
}
std::cout <<
std::setw
(
12
) << ucell.
atoms
[it].
na
;
std::cout << std::endl;
}
std::cout <<
"
---------------------------------------------------------
"
<< std::endl;
std::cout <<
"
Initial plane wave basis and FFT box
"
<< std::endl;
std::cout <<
"
---------------------------------------------------------
"
<< std::endl;
}
return
;
}
void
print_time
(
time_t
& time_start,
time_t
& time_finish)
{
//
print out information before ABACUS ends
std::cout <<
"
\n
START Time :
"
<<
ctime
(&time_start);
std::cout <<
"
FINISH Time :
"
<<
ctime
(&time_finish);
std::cout <<
"
TOTAL Time :
"
<<
int
(
difftime
(time_finish, time_start)) << std::endl;
std::cout <<
"
SEE INFORMATION IN :
"
<<
PARAM
.
globalv
.
global_out_dir
<< std::endl;
GlobalV::ofs_running <<
"
\n
Start Time :
"
<<
ctime
(&time_start);
GlobalV::ofs_running <<
"
Finish Time :
"
<<
ctime
(&time_finish);
double
total_time =
difftime
(time_finish, time_start);
int
hour = total_time /
3600
;
int
mins = ( total_time -
3600
* hour ) /
60
;
int
secs = total_time -
3600
* hour -
60
* mins ;
GlobalV::ofs_running <<
"
Total Time :
"
<<
unsigned
(hour) <<
"
h
"
<<
unsigned
(mins) <<
"
mins
"
<<
unsigned
(secs) <<
"
secs
"
<< std::endl;
}
void
print_rhofft
(ModulePW::PW_Basis* pw_rhod,
ModulePW::PW_Basis* pw_rho,
ModulePW::PW_Basis_Big* pw_big,
std::ofstream& ofs)
{
std::cout <<
"
UNIFORM GRID DIM :
"
<< pw_rho->
nx
<<
"
*
"
<< pw_rho->
ny
<<
"
*
"
<< pw_rho->
nz
<< std::endl;
std::cout <<
"
UNIFORM GRID DIM(BIG):
"
<< pw_big->
nbx
<<
"
*
"
<< pw_big->
nby
<<
"
*
"
<< pw_big->
nbz
<< std::endl;
if
(
PARAM
.
globalv
.
double_grid
)
{
std::cout <<
"
UNIFORM GRID (DENSE) :
"
<< pw_rhod->
nx
<<
"
*
"
<< pw_rhod->
ny
<<
"
*
"
<< pw_rhod->
nz
<< std::endl;
}
ofs <<
"
\n\n
"
;
ofs <<
"
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
"
<< std::endl;
ofs <<
"
| |
"
<< std::endl;
ofs <<
"
| #Setup Plane Waves of Charge/Potential# |
"
<< std::endl;
ofs <<
"
| Use the kinetic energy cutoff and the lattice vectors to generate |
"
<< std::endl;
ofs <<
"
| the dimensions of FFT grid, which is used to represent the charge |
"
<< std::endl;
ofs <<
"
| density or potential. If USPP is used, a double grid technique |
"
<< std::endl;
ofs <<
"
| is applied. |
"
<< std::endl;
ofs <<
"
| |
"
<< std::endl;
ofs <<
"
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
"
<< std::endl;
ofs <<
"
\n
"
;
ofs <<
"
SETUP PLANE WAVES FOR CHARGE/POTENTIAL
"
<< std::endl;
double
ecut =
4
*
PARAM
.
inp
.
ecutwfc
;
if
(
PARAM
.
inp
.
nx
*
PARAM
.
inp
.
ny
*
PARAM
.
inp
.
nz
>
0
)
{
ecut = pw_rho->
gridecut_lat
* pw_rho->
tpiba2
;
ofs <<
"
FFT DIMENSIONS ARE FROM INPUT
"
<< std::endl;
ofs <<
"
KINETIC ENEGY CUTOFF IS DETERMINED FROM nx, ny, nz
"
<< std::endl;
}
ModuleBase::GlobalFunc::OUT
(ofs,
"
Energy cutoff for charge/potential (Ry)
"
, ecut);
ModuleBase::GlobalFunc::OUT
(ofs,
"
FFT grid for charge/potential
"
, pw_rho->
nx
, pw_rho->
ny
, pw_rho->
nz
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
Number of FFT grids this proc.
"
, pw_rho->
nrxx
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
Division for big FFT grid
"
, pw_big->
bx
, pw_big->
by
, pw_big->
bz
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
FFT (big) grid for charge/potential
"
, pw_big->
nbx
, pw_big->
nby
, pw_big->
nbz
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
Number of FFT (big) grids this proc.
"
, pw_big->
nbxx
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
Number of plane waves
"
, pw_rho->
npwtot
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
Number of sticks on FFT x-y plane
"
, pw_rho->
nstot
);
ofs <<
"
\n
PARALLEL PW FOR CHARGE/POTENTIAL
"
<< std::endl;
ofs <<
"
"
<<
std::setw
(
8
) <<
"
PROC
"
<<
std::setw
(
15
) <<
"
COLUMNS(POT)
"
<<
std::setw
(
15
) <<
"
PW
"
<< std::endl;
for
(
int
i =
0
; i < GlobalV::
NPROC_IN_POOL
; ++i)
{
ofs <<
"
"
<<
std::setw
(
8
) << i +
1
<<
std::setw
(
15
) << pw_rho->
nst_per
[i] <<
std::setw
(
15
)
<< pw_rho->
npw_per
[i] << std::endl;
}
ofs <<
"
--------------- SUM -------------------
"
<< std::endl;
ofs <<
"
"
<<
std::setw
(
8
) << GlobalV::
NPROC_IN_POOL
<<
std::setw
(
15
) << pw_rho->
nstot
<<
std::setw
(
15
)
<< pw_rho->
npwtot
<< std::endl;
ofs << std::endl;
ModuleBase::GlobalFunc::OUT
(ofs,
"
Number of |g|
"
, pw_rho->
ngg
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
Max |g|
"
, pw_rho->
gg_uniq
[pw_rho->
ngg
-
1
]);
ModuleBase::GlobalFunc::OUT
(ofs,
"
Min |g|
"
, pw_rho->
gg_uniq
[
0
]);
if
(
PARAM
.
globalv
.
double_grid
)
{
ofs << std::endl;
ofs << std::endl;
ofs << std::endl;
double
ecut =
PARAM
.
inp
.
ecutrho
;
if
(
PARAM
.
inp
.
ndx
*
PARAM
.
inp
.
ndy
*
PARAM
.
inp
.
ndz
>
0
)
{
ecut = pw_rhod->
gridecut_lat
* pw_rhod->
tpiba2
;
ofs <<
"
use input fft dimensions for the dense part of charge
"
"
density.
"
<< std::endl;
ofs <<
"
calculate energy cutoff from ndx, ndy, ndz:
"
<< std::endl;
}
ModuleBase::GlobalFunc::OUT
(ofs,
"
energy cutoff for dense charge/potential (unit:Ry)
"
, ecut);
ModuleBase::GlobalFunc::OUT
(ofs,
"
fft grid for dense charge/potential
"
, pw_rhod->
nx
, pw_rhod->
ny
, pw_rhod->
nz
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
nrxx
"
, pw_rhod->
nrxx
);
ofs <<
"
\n
SETUP PLANE WAVES FOR DENSE CHARGE/POTENTIAL
"
<< std::endl;
ModuleBase::GlobalFunc::OUT
(ofs,
"
Number of plane waves
"
, pw_rhod->
npwtot
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
Number of sticks
"
, pw_rhod->
nstot
);
ofs <<
"
\n
PARALLEL PW FOR dense CHARGE/POTENTIAL
"
<< std::endl;
ofs <<
"
"
<<
std::setw
(
8
) <<
"
PROC
"
<<
std::setw
(
15
) <<
"
COLUMNS(POT)
"
<<
std::setw
(
15
) <<
"
PW
"
<< std::endl;
for
(
int
i =
0
; i < GlobalV::
NPROC_IN_POOL
; ++i)
{
ofs <<
"
"
<<
std::setw
(
8
) << i +
1
<<
std::setw
(
15
) << pw_rhod->
nst_per
[i] <<
std::setw
(
15
)
<< pw_rhod->
npw_per
[i] << std::endl;
}
ofs <<
"
--------------- sum -------------------
"
<< std::endl;
ofs <<
"
"
<<
std::setw
(
8
) << GlobalV::
NPROC_IN_POOL
<<
std::setw
(
15
) << pw_rhod->
nstot
<<
std::setw
(
15
)
<< pw_rhod->
npwtot
<< std::endl;
ModuleBase::GlobalFunc::OUT
(ofs,
"
number of |g|
"
, pw_rhod->
ngg
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
max |g|
"
, pw_rhod->
gg_uniq
[pw_rhod->
ngg
-
1
]);
ModuleBase::GlobalFunc::OUT
(ofs,
"
min |g|
"
, pw_rhod->
gg_uniq
[
0
]);
}
}
void
print_wfcfft
(
const
Input_para& inp, ModulePW::PW_Basis_K& pw_wfc, std::ofstream& ofs)
{
ofs <<
"
\n\n
"
;
ofs <<
"
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
"
<< std::endl;
ofs <<
"
| |
"
<< std::endl;
ofs <<
"
| #Setup Plane Waves of Wave Functions# |
"
<< std::endl;
ofs <<
"
| Use the kinetic energy cutoff and the lattice vectors to generate |
"
<< std::endl;
ofs <<
"
| the dimensions of FFT grid, which is used to represent the wave |
"
<< std::endl;
ofs <<
"
| functions of electrons. |
"
<< std::endl;
ofs <<
"
| |
"
<< std::endl;
ofs <<
"
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
"
<< std::endl;
ofs <<
"
\n
"
;
ofs <<
"
SETUP PLANE WAVES FOR WAVE FUNCTIONS
"
<< std::endl;
double
ecut = inp.
ecutwfc
;
if
(
std::abs
(ecut - pw_wfc.
gk_ecut
* pw_wfc.
tpiba2
) >
1e-6
)
{
ecut = pw_wfc.
gk_ecut
* pw_wfc.
tpiba2
;
ofs <<
"
Energy cutoff for wavefunc is incompatible with nx, ny, nz and
"
"
it will be reduced!
"
<< std::endl;
}
ModuleBase::GlobalFunc::OUT
(ofs,
"
Energy cutoff for wavefunc (unit:Ry)
"
, ecut);
ModuleBase::GlobalFunc::OUT
(ofs,
"
FFT grid for wave functions
"
, pw_wfc.
nx
, pw_wfc.
ny
, pw_wfc.
nz
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
Number of total plane waves
"
, pw_wfc.
npwtot
);
ModuleBase::GlobalFunc::OUT
(ofs,
"
Number of sticks on FFT x-y plane
"
, pw_wfc.
nstot
);
ofs <<
"
\n
PARALLEL PW FOR WAVE FUNCTIONS
"
<< std::endl;
ofs <<
"
"
<<
std::setw
(
8
) <<
"
PROC
"
<<
std::setw
(
15
) <<
"
COLUMNS(POT)
"
<<
std::setw
(
15
) <<
"
PW
"
<< std::endl;
for
(
int
i =
0
; i < GlobalV::
NPROC_IN_POOL
; ++i)
{
ofs <<
"
"
<<
std::setw
(
8
) << i +
1
<<
std::setw
(
15
) << pw_wfc.
nst_per
[i] <<
std::setw
(
15
) << pw_wfc.
npw_per
[i]
<< std::endl;
}
ofs <<
"
--------------- sum -------------------
"
<< std::endl;
ofs <<
"
"
<<
std::setw
(
8
) << GlobalV::
NPROC_IN_POOL
<<
std::setw
(
15
) << pw_wfc.
nstot
<<
std::setw
(
15
)
<< pw_wfc.
npwtot
<< std::endl;
ModuleBase::GlobalFunc::DONE
(ofs,
"
INIT PLANEWAVE
"
);
}
void
print_screen
(
const
int
& stress_step,
const
int
& force_step,
const
int
& istep)
{
std::cout <<
"
\n
================================================================
"
<< std::endl;
GlobalV::ofs_running <<
"
================================================================
"
<< std::endl;
if
(
PARAM
.
inp
.
calculation
==
"
scf
"
)
{
std::cout <<
"
SELF-CONSISTENT:
"
<< std::endl;
GlobalV::ofs_running <<
"
SELF-CONSISTENT
"
<< std::endl;
}
else
if
(
PARAM
.
inp
.
calculation
==
"
nscf
"
)
{
std::cout <<
"
NONSELF-CONSISTENT:
"
<< std::endl;
GlobalV::ofs_running <<
"
NONSELF-CONSISTENT
"
<< std::endl;
}
else
if
(
PARAM
.
inp
.
calculation
==
"
md
"
)
{
std::cout <<
"
STEP OF MOLECULAR DYNAMICS:
"
<<
unsigned
(istep) << std::endl;
GlobalV::ofs_running <<
"
STEP OF MOLECULAR DYNAMICS:
"
<<
unsigned
(istep) << std::endl;
}
else
{
if
(
PARAM
.
inp
.
calculation
==
"
relax
"
)
{
std::cout <<
"
RELAX STEP:
"
<<
unsigned
(istep) << std::endl;
GlobalV::ofs_running <<
"
RELAX STEP:
"
<<
unsigned
(istep) << std::endl;
}
else
if
(
PARAM
.
inp
.
calculation
==
"
cell-relax
"
)
{
std::cout <<
"
RELAX STEP:
"
<<
unsigned
(istep);
std::cout <<
"
(CELL_CHANGE#
"
<<
unsigned
(stress_step);
std::cout <<
"
IONS_CHANGE#
"
<<
unsigned
(force_step) <<
"
)
"
<< std::endl;
GlobalV::ofs_running <<
"
RELAX STEP:
"
<<
unsigned
(istep);
GlobalV::ofs_running <<
"
(CELL_CHANGE#
"
<<
unsigned
(stress_step);
GlobalV::ofs_running <<
"
IONS_CHANGE#
"
<<
unsigned
(force_step) <<
"
)
"
<< std::endl;
}
}
std::cout <<
"
================================================================
"
<< std::endl;
GlobalV::ofs_running <<
"
================================================================
"
<< std::endl;
}
}
//
namespace ModuleIO
Back
|
FazBrowse Home
|
New Git URL