Octopus
td_write.F90
Go to the documentation of this file.
1! Copyright (C) 2002-2006 M. Marques, A. Castro, A. Rubio, G. Bertsch
2!!
3!! This program is free software; you can redistribute it and/or modify
4!! it under the terms of the GNU General Public License as published by
5!! the Free Software Foundation; either version 2, or (at your option)
6!! any later version.
7!!
8!! This program is distributed in the hope that it will be useful,
9!! but WITHOUT ANY WARRANTY; without even the implied warranty of
10!! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11!! GNU General Public License for more details.
12!!
13!! You should have received a copy of the GNU General Public License
14!! along with this program; if not, write to the Free Software
15!! Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16!! 02110-1301, USA.
17!!
18
19#include "global.h"
20
21module td_write_oct_m
22 use blas_oct_m
23 use comm_oct_m
25 use debug_oct_m
33 use global_oct_m
34 use grid_oct_m
35 use output_oct_m
44 use io_oct_m
46 use ions_oct_m
47 use kick_oct_m
48 use, intrinsic :: iso_fortran_env
50 use lasers_oct_m
53 use lda_u_oct_m
56 use math_oct_m
59 use mesh_oct_m
62 use mpi_oct_m
67 use parser_oct_m
73 use space_oct_m
83 use types_oct_m
84 use unit_oct_m
86 use utils_oct_m
88 use v_ks_oct_m
91
92 implicit none
93
94 private
95 public :: &
96 td_write_t, &
107
109 integer, parameter, public :: &
110 OUT_MULTIPOLES = 1, &
111 out_angular = 2, &
112 out_spin = 3, &
113 out_populations = 4, &
114 out_coords = 5, &
115 out_acc = 6, &
117 out_energy = 8, &
118 out_proj = 9, &
119 out_magnets = 10, &
120 out_gauge_field = 11, &
121 out_temperature = 12, &
122 out_ftchd = 13, &
123 out_vel = 14, &
124 out_eigs = 15, &
125 out_ion_ch = 16, &
126 out_total_current = 17, &
127 out_partial_charges = 18, &
128 out_kp_proj = 19, &
129 out_floquet = 20, &
130 out_n_ex = 21, &
131 out_separate_coords = 22, &
133 out_separate_forces = 24, &
135 out_tot_m = 26, &
136 out_q = 27, &
137 out_mxll_field = 28, &
138 out_norm_ks = 29, &
139 out_cell_parameters = 30, &
140 out_ionic_current = 31, &
141 out_dm_proj_basis = 32, &
142 ! This constant should always equal the last integer above
143 ! as it defines the total numer of output options
144 out_max = 32
145
146
148 ! Entries must be consistent with the ordering above
149 character(len=100) :: td_file_name(OUT_MAX) = [character(100) :: &
150 "NULL", & ! Do not include OUT_MULTIPOLES (extension is a function of state index)
151 "angular", &
152 "spin", &
153 "populations", &
154 "coordinates", &
155 "acceleration", &
156 "NULL", & ! Do not include OUT_LASER
157 "energy", &
158 "projections", &
159 "magnetic_moments", &
160 "gauge_field", &
161 "temperature", &
162 "NULL", & ! Do not include OUT_FTCHD
163 "velocity", &
164 "eigenvalues", &
165 "ion_ch", &
166 "total_current", &
167 "partial_charges", &
168 "projections", &
169 "floquet_bands", &
170 "n_ex", &
171 "onlyCoordinates", &
172 "onlyVelocities", &
173 "onlyForces", &
174 "total_heat_current", &
175 "total_magnetization", &
176 "photons_q", &
177 "maxwell_dipole_field", &
178 "norm_wavefunctions", &
179 "cell_parameters", &
180 "ionic_current", &
181 "dm_proj_basis"]
182
183 integer, parameter :: &
184 OUT_DFTU_EFFECTIVE_U = 1, &
185 out_dftu_max = 1
186
187
188 integer, parameter :: &
189 OUT_MAXWELL_TOTAL_E_FIELD = 1, &
195 out_maxwell_energy = 19, &
202
203 integer, parameter, public :: &
205
206 integer, parameter :: &
208 maxwell_long_field = 2, &
210
211 integer, parameter :: &
212 maxwell_e_field = 1, &
214
216 type td_write_prop_t
217 type(c_ptr) :: handle
218 type(c_ptr), allocatable :: mult_handles(:)
219 type(mpi_grp_t) :: mpi_grp
220 integer :: hand_start
221 integer :: hand_end
222 logical :: write = .false.
223 logical :: resolve_states = .false.
224 end type td_write_prop_t
225
229 type td_write_t
230 private
231 type(td_write_prop_t), public :: out(out_max)
232 type(td_write_prop_t) :: out_dftu(out_dftu_max)
233
234 integer :: lmax
235 real(real64) :: lmm_r
236 type(states_elec_t) :: gs_st
237 ! calculate the projections(s) onto it.
238 integer :: n_excited_states
239 type(excited_states_t), allocatable :: excited_st(:)
240 integer :: compute_interval
241 end type td_write_t
242
243contains
245
246 subroutine td_write_kick(outp, namespace, space, mesh, kick, ions, iter)
247 type(output_t), intent(in) :: outp
248 type(namespace_t), intent(in) :: namespace
249 type(electron_space_t), intent(in) :: space
250 class(mesh_t), intent(in) :: mesh
251 type(kick_t), intent(in) :: kick
252 type(ions_t), intent(in) :: ions
253 integer, intent(in) :: iter
254
255 complex(real64), allocatable :: kick_function(:)
256 character(len=256) :: filename
257 integer :: err
258
259 push_sub(td_write_kick)
260
261 write(filename, '(a,i7.7)') "td.", iter ! name of directory
262 if (outp%what(option__output__delta_perturbation)) then
263 safe_allocate(kick_function(1:mesh%np))
264 call kick_function_get(space, mesh, kick, kick_function, 1)
265 call zio_function_output(outp%how(option__output__delta_perturbation), filename, "kick_function", namespace, &
266 space, mesh, kick_function(:), units_out%energy, err, pos=ions%pos, atoms=ions%atom)
267 safe_deallocate_a(kick_function)
268 end if
269
270 pop_sub(td_write_kick)
271 end subroutine td_write_kick
272
273
283 subroutine td_write_init(writ, namespace, space, outp, gr, st, hm, ions, ext_partners, ks, ions_move, &
284 with_gauge_field, kick, iter, max_iter, dt, mc, dmp)
285 type(td_write_t), target, intent(out) :: writ
286 type(namespace_t), intent(in) :: namespace
287 type(electron_space_t), intent(in) :: space
288 type(output_t), intent(inout) :: outp
289 type(grid_t), intent(in) :: gr
290 type(states_elec_t), intent(inout) :: st
291 type(hamiltonian_elec_t), intent(inout) :: hm
292 type(ions_t), intent(in) :: ions
293 type(partner_list_t), intent(in) :: ext_partners
294 type(v_ks_t), intent(inout) :: ks
295 logical, intent(in) :: ions_move
296 logical, intent(in) :: with_gauge_field
297 type(kick_t), intent(in) :: kick
298 integer, intent(in) :: iter
299 integer, intent(in) :: max_iter
300 real(real64), intent(in) :: dt
301 type(multicomm_t), intent(in) :: mc
302 type(dmp_t), intent(in) :: dmp
303
304 real(real64) :: rmin
305 integer :: ierr, first, ii, ist, jj, flags, iout, default, ifile
306 logical :: output_options(max_output_types)
307 integer :: output_interval(0:max_output_types)
308 integer(int64) :: how(0:max_output_types)
309 type(block_t) :: blk
310 character(len=MAX_PATH_LEN) :: filename
311 type(restart_t) :: restart_gs
312 logical :: resolve_states
313 logical, allocatable :: skip(:)
317 !%Variable TDOutput
318 !%Type block
319 !%Default multipoles + energy (+ others depending on other options)
320 !%Section Time-Dependent::TD Output
321 !%Description
322 !% Defines what should be output during the time-dependent
323 !% simulation. Many of the options can increase the computational
324 !% cost of the simulation, so only use the ones that you need. In
325 !% most cases the default value is enough, as it is adapted to the
326 !% details of the TD run. If the ions are allowed to be moved, additionally
327 !% the geometry and the temperature are output. If a laser is
328 !% included it will output by default.
329 !%
330 !% Note: the output files generated by this option are updated
331 !% whenever restart files are written.
332 !%
333 !% Example:
334 !% <br><br><tt>%TDOutput
335 !% <br>&nbsp;&nbsp;multipoles
336 !% <br>&nbsp;&nbsp;energy
337 !% <br>%<br></tt>
338 !%
339 !%Option multipoles 1
340 !% Outputs the (electric) multipole moments of the density to the file <tt>td.general/multipoles</tt>.
341 !% This is required to, <i>e.g.</i>, calculate optical absorption spectra of finite systems. The
342 !% maximum value of <math>l</math> can be set with the variable <tt>TDMultipoleLmax</tt>.
343 !%Option angular 2
344 !% Outputs the orbital angular momentum of the system to <tt>td.general/angular</tt>.
345 !% This can be used to calculate circular dicrhoism. Not implemented for periodic systems.
346 !% In case of a nonlocal pseudopotential, the gauge used can be specified using
347 !% the variable <tt>MagneticGaugeCorrection</tt>.
348 !%Option spin 3
349 !% (Experimental) Outputs the expectation value of the spin, which can be used to calculate magnetic
350 !% circular dichroism.
351 !%Option populations 4
352 !% (Experimental) Outputs the projection of the time-dependent
353 !% Kohn-Sham Slater determinant onto the ground state (or
354 !% approximations to the excited states) to the file
355 !% <tt>td.general/populations</tt>. Note that the calculation of
356 !% populations is expensive in memory and computer time, so it
357 !% should only be used if it is really needed. See <tt>TDExcitedStatesToProject</tt>.
358 !%Option geometry 5
359 !% If set (and if the atoms are allowed to move), outputs the coordinates, velocities,
360 !% and forces of the atoms to the the file <tt>td.general/coordinates</tt>. On by default if <tt>MoveIons = yes</tt>.
361 !%Option dipole_acceleration 6
362 !% When set, outputs the acceleration of the electronic dipole, calculated from the Ehrenfest theorem,
363 !% in the file <tt>td.general/acceleration</tt>. This file can then be
364 !% processed by the utility <tt>oct-harmonic-spectrum</tt> in order to obtain the harmonic spectrum.
365 !%Option laser 7
366 !% If set, outputs the laser field to the file <tt>td.general/laser</tt>.
367 !% On by default if <tt>TDExternalFields</tt> is set.
368 !%Option energy 8
369 !% If set, <tt>octopus</tt> outputs the different components of the energy
370 !% to the file <tt>td.general/energy</tt>. Will be zero except for every <tt>TDEnergyUpdateIter</tt> iterations.
371 !%Option td_occup 9
372 !% (Experimental) If set, outputs the projections of the
373 !% time-dependent Kohn-Sham wavefunctions onto the static
374 !% (zero-time) wavefunctions to the file
375 !% <tt>td.general/projections.XXX</tt>. Only use this option if
376 !% you really need it, as it might be computationally expensive. See <tt>TDProjStateStart</tt>.
377 !% The output interval of this quantity is controled by the variable <tt>TDOutputComputeInterval</tt>
378 !% In case of states parallelization, all the ground-state states are stored by each task.
379 !%Option local_mag_moments 10
380 !% If set, outputs the local magnetic moments, integrated in sphere centered around each atom.
381 !% The radius of the sphere can be set with <tt>LocalMagneticMomentsSphereRadius</tt>.
382 !%Option gauge_field 11
383 !% If set, outputs the vector gauge field corresponding to a spatially uniform (but time-dependent)
384 !% external electrical potential. This is only useful in a time-dependent periodic run.
385 !% On by default if <tt>GaugeVectorField</tt> is set.
386 !%Option temperature 12
387 !% If set, the ionic temperature at each step is printed. On by default if <tt>MoveIons = yes</tt>.
388 !%Option ftchd 13
389 !% Write Fourier transform of the electron density to the file <tt>ftchd.X</tt>,
390 !% where X depends on the kick (e.g. with sin-shaped perturbation X=sin).
391 !% This is needed for calculating the dynamic structure factor.
392 !% In the case that the kick mode is qbessel, the written quantity is integral over
393 !% density, multiplied by spherical Bessel function times real spherical harmonic.
394 !% On by default if <tt>TDMomentumTransfer</tt> is set.
395 !%Option dipole_velocity 14
396 !% When set, outputs the dipole velocity, calculated from the Ehrenfest theorem,
397 !% in the file <tt>td.general/velocity</tt>. This file can then be
398 !% processed by the utility <tt>oct-harmonic-spectrum</tt> in order to obtain the harmonic spectrum.
399 !%Option eigenvalues 15
400 !% Write the KS eigenvalues.
401 !%Option ionization_channels 16
402 !% Write the multiple-ionization channels using the KS orbital densities as proposed in
403 !% C. Ullrich, Journal of Molecular Structure: THEOCHEM 501, 315 (2000).
404 !%Option total_current 17
405 !% Output the total current (integral of the current density over the cell) to
406 !% <tt>td.general/total_current</tt>. The columns are the iteration and time,
407 !% followed by the total-current components, the integrals of
408 !% <math>|j_i(r)|</math>, and then the spin-resolved current components.
409 !% In spinor calculations, as for the density, sp1 is up-up, sp2 is down-down,
410 !% and sp3 and sp4 are respectively the real and imaginary parts of the up-down
411 !% component.
412 !%Option partial_charges 18
413 !% Bader and Hirshfeld partial charges. The output file is called 'td.general/partial_charges'.
414 !%Option td_kpoint_occup 19
415 !% Project propagated Kohn-Sham states to the states at t=0 given in the directory
416 !% restart_proj (see %RestartOptions). This is an alternative to the option
417 !% td_occup, with a formating more suitable for k-points and works only in
418 !% k- and/or state parallelization
419 !%Option td_floquet 20
420 !% Compute non-interacting Floquet bandstructure according to further options:
421 !% TDFloquetFrequency, TDFloquetSample, TDFloquetDimension.
422 !% This is done only once per td-run at t=0.
423 !% works only in k- and/or state parallelization
424 !%Option n_excited_el 21
425 !% Output the number of excited electrons, based on the projections
426 !% of the time evolved wave-functions on the ground-state wave-functions.
427 !% The output interval of this quantity is controled by the variable <tt>TDOutputComputeInterval</tt>
428 !% Note that if one sets RecalculateGSDuringEvolution=yes,
429 !% the code will recompute the GS states
430 !% and use them for the computing the number of excited electrons.
431 !% This is useful if ions are moving or if one wants to get the number of excited electrons in the basis
432 !% of the instantaneous eigenvalues of the Hamiltonian (Houston states).
433 !%Option coordinates_sep 22
434 !% Writes geometries in a separate file.
435 !%Option velocities_sep 23
436 !% Writes velocities in a separate file.
437 !%Option forces_sep 24
438 !% Writes forces in a separate file.
439 !%Option total_heat_current 25
440 !% Output the total heat current (integral of the heat current density over the cell).
441 !%Option total_magnetization 26
442 !% Writes the total magnetization, where the total magnetization is calculated at the momentum
443 !% defined by <tt>TDMomentumTransfer</tt>.
444 !% This is used to extract the magnon frequency in case of a magnon kick.
445 !%Option photons_q 27
446 !% Writes photons_q in a separate file.
447 !%Option maxwell_field 28
448 !% Writes total electric field (if coupling is in length_geuge) or vector potential
449 !% (if coupling is in velocity_gauge) coming from the interaction with Maxwell systems
450 !% (only if Maxwell-TDDFT coupling is in dipole).
451 !%Option norm_ks_orbitals 29
452 !% Writes the norm of each Kohn-Sham orbital.
453 !% The data is ordered per row as:
454 !% Iteration time (state 1 kpoint 1) (state2 kpoint1) ... (state-Nstates kpoint1) (state1 kpoint2)
455 !% ... (state-Nstates kpoint-nkpt)
456 !% noting that the kpoint index will also include the spin index for spin-polarised calculations.
457 !%Option cell_parameters 30
458 !% Writes the cell parameters (lattice parameter lengths, angles, Cartesian coordinates).
459 !%Option ionic_current 31
460 !% Writes the ionic current in a separate file. Activated by default for moving ions if total current is written.
461 !%Option dm_proj_basis 32
462 !% (Experimental) If enabled, the eigenvalues and corresponding
463 !% occupations of the TDDMPropagationBasis are written to
464 !% the file <tt>td.general/DMproject_basis</tt>.
465 !% This option does not incur any additional computational cost.
466 !% The output frequency is controlled by the variable
467 !% <tt>TDOutputComputeInterval</tt>.
468 !%End
469
470 !defaults
471 output_options = .false.
472 output_options(out_multipoles) = .true.
473 output_options(out_energy) = .true.
474 if (ions_move) then
475 output_options(out_coords) = .true.
476 output_options(out_temperature) = .true.
477 end if
478 if (with_gauge_field) output_options(out_gauge_field) = .true.
479 if (list_has_lasers(ext_partners)) output_options(out_laser) = .true.
480 if (kick%qkick_mode /= qkickmode_none) output_options(out_ftchd) = .true.
481
482 call io_function_read_what_how_when(namespace, space, output_options, how, output_interval, &
483 'TDOutput')
484 if (ions_move .and. output_options(out_total_current)) then
485 output_options(out_ionic_current) = .true.
486 end if
487
488 ! Define which files to write
489 do iout = 1, out_max
490 writ%out(iout)%write = output_options(iout)
491 end do
492
493 ! experimental stuff
494 if (writ%out(out_spin)%write) call messages_experimental('TDOutput = spin', namespace=namespace)
495 if (writ%out(out_populations)%write) call messages_experimental('TDOutput = populations', namespace=namespace)
496 if (writ%out(out_proj)%write) call messages_experimental('TDOutput = td_occup', namespace=namespace)
497 if (writ%out(out_ion_ch)%write) call messages_experimental('TDOutput = ionization_channels', namespace=namespace)
498 if (writ%out(out_partial_charges)%write) call messages_experimental('TDOutput = partial_charges', namespace=namespace)
499 if (writ%out(out_kp_proj)%write) call messages_experimental('TDOutput = td_kpoint_occup', namespace=namespace)
500 if (writ%out(out_floquet)%write) call messages_experimental('TDOutput = td_floquet', namespace=namespace)
501 if (writ%out(out_n_ex)%write) call messages_experimental('TDOutput = n_excited_el', namespace=namespace)
502 if (writ%out(out_q)%write) call messages_experimental('TDOutput = photons_q', namespace=namespace)
503 if (writ%out(out_mxll_field)%write) call messages_experimental('TDOutput = maxwell_field', namespace=namespace)
504 if (writ%out(out_dm_proj_basis)%write) call messages_experimental('TDOutput = dm_proj_basis', namespace=namespace)
505
506 if (space%is_periodic() .and. writ%out(out_angular)%write) then
507 call messages_not_implemented("TDOutput angular for periodic systems", namespace=namespace)
508 end if
509
510 if (writ%out(out_cell_parameters)%write .and. space%dim /= 3) then
511 call messages_not_implemented("TDOutput cell_parameters for Dimensions /= 3", namespace=namespace)
512 end if
513
514 !See comment in zstates_elec_mpdotp
515 if (space%is_periodic() .and. writ%out(out_populations)%write) then
516 call messages_not_implemented("TDOutput populations for periodic systems", namespace=namespace)
517 end if
518
519 if (writ%out(out_kp_proj)%write.or.writ%out(out_floquet)%write) then
520 ! make sure this is not domain distributed
521 if (gr%np /= gr%np_global) then
522 message(1) = "TDOutput option td_kpoint_occup and td_floquet do not work with domain parallelization"
523 call messages_fatal(1, namespace=namespace)
524 end if
525 end if
526
527 if ((writ%out(out_separate_forces)%write .or. writ%out(out_coords)%write) .and. space%periodic_dim == 1) then
528 call messages_input_error(namespace, 'TDOutput', &
529 'Forces for systems periodic in 1D are not currently implemented and options that output the forces are not allowed.')
530 end if
531
532 ! NTD: The implementation of the option should be really redone properly
533 if (writ%out(out_kp_proj)%write .and. hm%kpoints%nik_skip == 0) then
534 message(1) = "TDOutput option td_kpoint_occup only work with zero-weight k-points at the moment."
535 call messages_fatal(1, namespace=namespace)
536 end if
537
538 if (writ%out(out_dm_proj_basis)%write .and. dmp%calculation_mode == option__tddmpropagation__no_propagation) then
539 message(1) = "TDOutput option dm_proj_basis only works with TDDMPROPAGATION calculations"
540 call messages_fatal(1, namespace=namespace)
541 end if
542
543 !%Variable TDOutputResolveStates
544 !%Type logical
545 !%Default No
546 !%Section Time-Dependent::TD Output
547 !%Description
548 !% Defines whether the output should be resolved by states.
549 !%
550 !% So far only TDOutput = multipoles is supported.
551 !%
552 !%End
553 call parse_variable(namespace, 'TDOutputResolveStates', .false., resolve_states)
554 if (.not. writ%out(out_multipoles)%write .and. resolve_states) then
555 write(message(1),'(a)') "TDOutputResolveStates works only for TDOutput = multipoles."
556 call messages_warning(1, namespace=namespace)
557 end if
558
559 !%Variable TDMultipoleLmax
560 !%Type integer
561 !%Default 1
562 !%Section Time-Dependent::TD Output
563 !%Description
564 !% Maximum electric multipole of the density output to the file <tt>td.general/multipoles</tt>
565 !% during a time-dependent simulation. Must be non-negative.
566 !%End
567 call parse_variable(namespace, 'TDMultipoleLmax', 1, writ%lmax)
568 if (writ%lmax < 0) then
569 write(message(1), '(a,i6,a)') "Input: '", writ%lmax, "' is not a valid TDMultipoleLmax."
570 message(2) = '(Must be TDMultipoleLmax >= 0 )'
571 call messages_fatal(2, namespace=namespace)
572 end if
573 call messages_obsolete_variable(namespace, 'TDDipoleLmax', 'TDMultipoleLmax')
574
575 ! Compatibility test
576 if ((writ%out(out_acc)%write) .and. ions_move) then
577 message(1) = 'If harmonic spectrum is to be calculated, atoms should not be allowed to move.'
578 call messages_fatal(1, namespace=namespace)
579 end if
580
581 if ((writ%out(out_q)%write) .and. .not.(ks%has_photons)) then
582 message(1) = 'If q(t) is to be calculated, you need to allow for photon modes.'
583 call messages_fatal(1, namespace=namespace)
584 end if
585
586 if ((writ%out(out_mxll_field)%write) .and. .not. (hm%mxll%coupling_mode == velocity_gauge_dipole &
587 .or. hm%mxll%add_electric_dip)) then
588 message(1) = 'If the dipolar field has to be written, MaxwellCouplingMode has to be'
589 message(2) = '"lenght_gauge_dipole" or "velocity_gauge_dipole" and at least one Maxwell system'
590 message(3) = 'must be present.'
591 call messages_fatal(3, namespace=namespace)
592 end if
593
594 rmin = ions%min_distance()
595
596 ! This variable is documented in scf/scf.F90
597 call parse_variable(namespace, 'LocalMagneticMomentsSphereRadius', min(m_half*rmin, lmm_r_single_atom), writ%lmm_r, &
598 unit=units_inp%length)
599
600 if (writ%out(out_proj)%write .or. writ%out(out_populations)%write &
601 .or.writ%out(out_kp_proj)%write .or. writ%out(out_n_ex)%write) then
602
603 if (st%parallel_in_states .and. writ%out(out_populations)%write) then
604 message(1) = "Option TDOutput = populations is not implemented for parallel in states."
605 call messages_fatal(1, namespace=namespace)
606 end if
607
608 if (writ%out(out_proj)%write .or. writ%out(out_populations)%write) then
609 call states_elec_copy(writ%gs_st, st, exclude_wfns = .true., exclude_eigenval = .true.)
610 else
611 ! we want the same layout of gs_st as st
612 call states_elec_copy(writ%gs_st, st, special=.true.)
613 end if
614
615 ! clean up all the stuff we have to reallocate
616 safe_deallocate_a(writ%gs_st%node)
617
618 call restart_gs%init(namespace, restart_proj, restart_type_load, mc, ierr, mesh=gr)
619
620 if (writ%out(out_proj)%write .or. writ%out(out_populations)%write) then
621 if (ierr == 0) then
622 call states_elec_look(restart_gs, ii, jj, writ%gs_st%nst, ierr)
623 end if
624 writ%gs_st%st_end = writ%gs_st%nst
625 if (ierr /= 0) then
626 message(1) = "Unable to read states information."
627 call messages_fatal(1, namespace=namespace)
628 end if
629
630 writ%gs_st%st_start = 1
631 ! do this only when not calculating populations, since all states are needed then
632 if (.not. writ%out(out_populations)%write) then
633 ! We will store the ground-state Kohn-Sham system for all processors.
634 !%Variable TDProjStateStart
635 !%Type integer
636 !%Default 1
637 !%Section Time-Dependent::TD Output
638 !%Description
639 !% To be used with <tt>TDOutput = td_occup</tt>. Not available if <tt>TDOutput = populations</tt>.
640 !% Only output projections to states above <tt>TDProjStateStart</tt>. Usually one is only interested
641 !% in particle-hole projections around the HOMO, so there is no need to calculate (and store)
642 !% the projections of all TD states onto all static states. This sets a lower limit. The upper limit
643 !% is set by the number of states in the propagation and the number of unoccupied states
644 !% available.
645 !%End
646 call parse_variable(namespace, 'TDProjStateStart', 1, writ%gs_st%st_start)
647
648 if (st%parallel_in_states .and. writ%out(out_proj)%write .and. writ%gs_st%st_start > 1) then
649 call messages_not_implemented("TDOutput = td_occup for parallel in states with TDProjStateStart > 1", &
650 namespace=namespace)
651 end if
652 end if
653
654 writ%gs_st%lnst = writ%gs_st%st_end - writ%gs_st%st_start + 1
655
656 call states_elec_deallocate_wfns(writ%gs_st)
657
658 writ%gs_st%parallel_in_states = .false.
659
660 ! allocate memory
661 safe_allocate(writ%gs_st%occ(1:writ%gs_st%nst, 1:writ%gs_st%nik))
662 safe_allocate(writ%gs_st%eigenval(1:writ%gs_st%nst, 1:writ%gs_st%nik))
663
664 !We want all the task to have all the states
665 !States can be distibuted for the states we propagate.
666 safe_allocate(writ%gs_st%node(1:writ%gs_st%nst))
667 writ%gs_st%node(:) = 0
668
669 writ%gs_st%eigenval = huge(writ%gs_st%eigenval)
670 writ%gs_st%occ = m_zero
671 if (writ%gs_st%d%ispin == spinors) then
672 safe_deallocate_a(writ%gs_st%spin)
673 safe_allocate(writ%gs_st%spin(1:3, 1:writ%gs_st%nst, 1:writ%gs_st%nik))
674 end if
675
676 safe_allocate(skip(1:writ%gs_st%nst))
677 skip = .false.
678 skip(1:writ%gs_st%st_start-1) = .true.
679
680 call states_elec_allocate_wfns(writ%gs_st, gr, type_cmplx, packed=.true., skip=skip)
681
682 safe_deallocate_a(skip)
683 end if
684
685 call states_elec_load(restart_gs, namespace, space, writ%gs_st, gr, hm%kpoints, &
686 fixed_occ=.true., ierr=ierr, label = ': gs for TDOutput')
687
688 if (ierr /= 0 .and. ierr /= (writ%gs_st%st_end-writ%gs_st%st_start+1)*writ%gs_st%nik &
689 *writ%gs_st%d%dim*writ%gs_st%mpi_grp%size) then
690 message(1) = "Unable to read wavefunctions for TDOutput."
691 call messages_fatal(1, namespace=namespace)
692 end if
693 call restart_gs%end()
694 end if
695
696 ! Build the excited states...
697 if (writ%out(out_populations)%write) then
698 !%Variable TDExcitedStatesToProject
699 !%Type block
700 !%Section Time-Dependent::TD Output
701 !%Description
702 !% <b>[WARNING: This is a *very* experimental feature]</b>
703 !% To be used with <tt>TDOutput = populations</tt>.
704 !% The population of the excited states
705 !% (as defined by <Phi_I|Phi(t)> where |Phi(t)> is the many-body time-dependent state at
706 !% time <i>t</i>, and |Phi_I> is the excited state of interest) can be approximated -- it is not clear
707 !% how well -- by substituting for those real many-body states the time-dependent Kohn-Sham
708 !% determinant and some modification of the Kohn-Sham ground-state determinant (<i>e.g.</i>,
709 !% a simple HOMO-LUMO substitution, or the Casida ansatz for excited states in linear-response
710 !% theory. If you set <tt>TDOutput</tt> to contain <tt>populations</tt>, you may ask for these approximated
711 !% populations for a number of excited states, which will be described in the files specified
712 !% in this block: each line should be the name of a file that contains one excited state.
713 !%
714 !% This file structure is the one written by the casida run mode, in the files in the directory <tt>*_excitations</tt>.
715 !% The file describes the "promotions" from occupied
716 !% to unoccupied levels that change the initial Slater determinant
717 !% structure specified in ground_state. These promotions are a set
718 !% of electron-hole pairs. Each line in the file, after an optional header, has four
719 !% columns:
720 !%
721 !% <i>i a <math>\sigma</math> weight</i>
722 !%
723 !% where <i>i</i> should be an occupied state, <i>a</i> an unoccupied one, and <math>\sigma</math>
724 !% the spin of the corresponding orbital. This pair is then associated with a
725 !% creation-annihilation pair <math>a^{\dagger}_{a,\sigma} a_{i,\sigma}</math>, so that the
726 !% excited state will be a linear combination in the form:
727 !%
728 !% <math>\left|{\rm ExcitedState}\right> =
729 !% \sum weight(i,a,\sigma) a^{\dagger}_{a,\sigma} a_{i,\sigma} \left|{\rm GroundState}\right></math>
730 !%
731 !% where <i>weight</i> is the number in the fourth column.
732 !% These weights should be normalized to one; otherwise the routine
733 !% will normalize them, and write a warning.
734 !%End
735 if (parse_block(namespace, 'TDExcitedStatesToProject', blk) == 0) then
736 writ%n_excited_states = parse_block_n(blk)
737 safe_allocate(writ%excited_st(1:writ%n_excited_states))
738 do ist = 1, writ%n_excited_states
739 call parse_block_string(blk, ist-1, 0, filename)
740 call excited_states_init(writ%excited_st(ist), writ%gs_st, trim(filename), namespace)
741 end do
742 else
743 writ%n_excited_states = 0
744 end if
745 end if
746
747 !%Variable TDOutputComputeInterval
748 !%Type integer
749 !%Default 50
750 !%Section Time-Dependent::TD Output
751 !%Description
752 !% The TD output requested are computed
753 !% when the iteration number is a multiple of the <tt>TDOutputComputeInterval</tt> variable.
754 !% Must be >= 0. If it is 0, then no output is written.
755 !% Implemented only for projections and number of excited electrons for the moment.
756 !%End
757 call parse_variable(namespace, 'TDOutputComputeInterval', 50, writ%compute_interval)
758 if (writ%compute_interval < 0) then
759 message(1) = "TDOutputComputeInterval must be >= 0."
760 call messages_fatal(1, namespace=namespace)
761 end if
762
763 ! ----------------------------------------------
764 ! Initialize write file handlers
765 ! ----------------------------------------------
766
767 ! Step
768 if (iter == 0) then
769 first = 0
770 else
771 first = iter + 1
772 end if
773
774 ! Root dir for TD files
775 call io_mkdir('td.general', namespace)
776
777 ! ----------------------------------------------
778 ! Initialize write that are MPI agnostic
779 ! ----------------------------------------------
780
781 ! Default
782 writ%out(:)%mpi_grp = st%system_grp
783 writ%out_dftu(:)%mpi_grp = st%system_grp
784
785 if (st%system_grp%is_root()) then
786
787 do ifile = 1, out_max
788 ! Exceptions that are handled later
789 if (any([out_multipoles, out_laser, out_ftchd] == ifile)) cycle
790
791 if (writ%out(ifile)%write) then
792 call write_iter_init(writ%out(ifile)%handle, &
793 first, &
794 units_from_atomic(units_out%time, dt), &
795 trim(io_workpath("td.general/"//trim(td_file_name(ifile)), namespace)))
796 end if
797
798 enddo
799
800 ! Exceptions
801
802 ! Multipoles, when MPI is not state-parallel
803 if (writ%out(out_multipoles)%write .and. .not. resolve_states) then
804 call write_iter_init(writ%out(out_multipoles)%handle, &
805 first, units_from_atomic(units_out%time, dt), &
806 trim(io_workpath("td.general/multipoles", namespace)))
807 end if
808
809 if (writ%out(out_ftchd)%write) then
810 select case (kick%qkick_mode)
811 case (qkickmode_sin)
812 write(filename, '(a)') 'td.general/ftchd.sin'
813 case (qkickmode_cos)
814 write(filename, '(a)') 'td.general/ftchd.cos'
815 case (qkickmode_bessel)
816 write(filename, '(a, SP, I0.3, a, I0.3)') 'td.general/ftchd.l', kick%qbessel_l, '_m', kick%qbessel_m
817 case default
818 write(filename, '(a)') 'td.general/ftchd'
819 end select
820 call write_iter_init(writ%out(out_ftchd)%handle, &
821 first, units_from_atomic(units_out%time, dt), trim(io_workpath(filename, namespace)))
822 end if
823
824 if (writ%out(out_laser)%write) then
825 if(associated(list_get_lasers(ext_partners))) then
826 ! The laser file is written for the full propagation in one go, so that
827 ! the user can check that the laser is correct and as intended before letting
828 ! the code run for a possibly large period of time. This is done even after
829 ! a restart, so that it takes into account any changes to max_iter.
830 call io_rm("td.general/laser", namespace=namespace)
831 call write_iter_init(writ%out(out_laser)%handle, 0, &
832 units_from_atomic(units_out%time, dt), &
833 trim(io_workpath("td.general/laser", namespace)))
834 do ii = 0, max_iter
835 call td_write_laser(writ%out(out_laser)%handle, writ%out(out_laser)%mpi_grp, &
836 space, list_get_lasers(ext_partners), dt, ii)
837 end do
838 call write_iter_end(writ%out(out_laser)%handle)
839 end if
840 end if
841
842 end if ! st%system_grp%is_root()
843
844 ! ----------------------------------------------
845 ! Initialize write that are MPI group-specific
846 ! ----------------------------------------------
847
848 if (writ%out(out_multipoles)%write .and. resolve_states) then
849 !resolve state contribution on multipoles
850 writ%out(out_multipoles)%hand_start = st%st_start
851 writ%out(out_multipoles)%hand_end = st%st_end
852 writ%out(out_multipoles)%resolve_states = .true.
853 writ%out(out_multipoles)%mpi_grp = gr%mpi_grp
854
855 safe_allocate(writ%out(out_multipoles)%mult_handles(st%st_start:st%st_end))
856
857 if (writ%out(out_multipoles)%mpi_grp%is_root()) then
858 do ist = st%st_start, st%st_end
859 write(filename, '(a,i4.4)') 'td.general/multipoles-ist', ist
860 call write_iter_init(writ%out(out_multipoles)%mult_handles(ist), &
861 first, units_from_atomic(units_out%time, dt), &
862 trim(io_workpath(filename, namespace)))
863 end do
864 end if
865 end if
866
867 ! Misc operations
868
869 if (writ%out(out_total_current)%write .or. writ%out(out_total_heat_current)%write) then
870 !TODO: we should only compute the current here, not v_ks
871 call v_ks_calculate_current(ks, .true.)
872 call v_ks_calc(ks, namespace, space, hm, st, ions, ext_partners, &
873 calc_eigenval=.false., time = iter*dt, calc_energy = .false.)
874 end if
875
876
877 if (all(outp%how == 0) .and. writ%out(out_n_ex)%write) then
878 call io_function_read_what_how_when(namespace, space, outp%what, outp%how, outp%output_interval)
879 if (outp%how(option__output__current_kpt) + outp%how(option__output__density_kpt) /= 0) then
880 call io_mkdir(outp%iter_dir, namespace)
881 end if
882 end if
883
884 ! --------------------------------------------------------
885 ! All steps of the above routine, but specific to DFT+U
886 ! --------------------------------------------------------
887
888 !%Variable TDOutputDFTU
889 !%Type flag
890 !%Default none
891 !%Section Time-Dependent::TD Output
892 !%Description
893 !% Defines what should be output during the time-dependent
894 !% simulation, related to DFT+U.
895 !%
896 !% Note: the output files generated by this option are updated
897 !% whenever restart files are written.
898 !%Option effective_u 1
899 !% Writes the effective U for each orbital set as a function of time.
900 !%End
901 default = 0
902 if (hm%lda_u_level == dft_u_acbn0) default = default + 2**(out_dftu_effective_u - 1)
903 call parse_variable(namespace, 'TDOutputDFTU', default, flags)
904
905 if (.not. varinfo_valid_option('TDOutputDFTU', flags, is_flag = .true.)) then
906 call messages_input_error(namespace, 'TDOutputDFTU')
907 end if
908
909 do iout = 1, out_dftu_max
910 writ%out_dftu(iout)%write = (iand(flags, 2**(iout - 1)) /= 0)
911 end do
912
913 if (st%system_grp%is_root()) then
914 if (writ%out_dftu(out_dftu_effective_u)%write) then
915 call write_iter_init(writ%out_dftu(out_dftu_effective_u)%handle, &
916 first, units_from_atomic(units_out%time, dt), &
917 trim(io_workpath("td.general/effectiveU", namespace)))
918 end if
919 end if
920
921 pop_sub(td_write_init)
922 end subroutine td_write_init
923
924
925 ! ---------------------------------------------------------
926 subroutine td_write_end(writ)
927 type(td_write_t), intent(inout) :: writ
928
929 integer :: ist, iout
930
931 push_sub(td_write_end)
932
933 do iout = 1, out_max
934 if (iout == out_laser) cycle
935 if (writ%out(iout)%write) then
936 if (writ%out(iout)%mpi_grp%is_root()) then
937 if (writ%out(iout)%resolve_states) then
938 do ist = writ%out(iout)%hand_start, writ%out(iout)%hand_end
939 call write_iter_end(writ%out(iout)%mult_handles(ist))
940 end do
941 safe_deallocate_a(writ%out(iout)%mult_handles)
942 else
943 call write_iter_end(writ%out(iout)%handle)
944 end if
945 end if
946 end if
947 end do
948
949 do iout = 1, out_dftu_max
950 if (writ%out_dftu(iout)%write .and. writ%out_dftu(iout)%mpi_grp%is_root()) then
951 call write_iter_end(writ%out_dftu(iout)%handle)
952 end if
953 end do
954
955 if (writ%out(out_populations)%write) then
956 do ist = 1, writ%n_excited_states
957 call excited_states_kill(writ%excited_st(ist))
958 end do
959 writ%n_excited_states = 0
960 end if
961
962 if (writ%out(out_proj)%write .or. writ%out(out_populations)%write &
963 .or. writ%out(out_n_ex)%write .or. writ%out(out_kp_proj)%write) then
964 call states_elec_end(writ%gs_st)
965 end if
966
967 pop_sub(td_write_end)
968 end subroutine td_write_end
969
970
971 ! ---------------------------------------------------------
972 subroutine td_write_iter(writ, namespace, space, outp, gr, st, hm, ions, ext_partners, kick, ks, dt, &
973 iter, mc, recalculate_gs, dmp_st)
974 type(td_write_t), intent(inout) :: writ
975 type(namespace_t), intent(in) :: namespace
976 class(space_t), intent(in) :: space
977 type(output_t), intent(in) :: outp
978 type(grid_t), intent(in) :: gr
979 type(states_elec_t), intent(inout) :: st
980 type(hamiltonian_elec_t), intent(inout) :: hm
981 type(ions_t), intent(inout) :: ions
982 type(partner_list_t), intent(in) :: ext_partners
983 type(kick_t), intent(in) :: kick
984 type(v_ks_t), intent(in) :: ks
985 real(real64), intent(in) :: dt
986 integer, intent(in) :: iter
987 type(multicomm_t), intent(in) :: mc
988 logical, intent(in) :: recalculate_gs
989 type(states_elec_t), intent(in) :: dmp_st
990
991 type(gauge_field_t), pointer :: gfield
992 integer :: ierr
993 type(restart_t) :: restart_gs
994
995 push_sub_with_profile(td_write_iter)
996
997 if (writ%out(out_multipoles)%write) then
998 call td_write_multipole(writ%out(out_multipoles), space, gr, ions, st, writ%lmax, kick, iter)
999 end if
1000
1001 if (writ%out(out_ftchd)%write) then
1002 call td_write_ftchd(writ%out(out_ftchd)%handle, space, gr, st, kick, iter)
1003 end if
1004
1005 if (writ%out(out_angular)%write) then
1006 call td_write_angular(writ%out(out_angular)%handle, namespace, space, gr, ions, hm, st, kick, iter)
1007 end if
1008
1009 if (writ%out(out_spin)%write) then
1010 call td_write_spin(writ%out(out_spin)%handle, writ%out(out_spin)%mpi_grp, gr, st, iter)
1011 end if
1012
1013 if (writ%out(out_magnets)%write) then
1014 call td_write_local_magnetic_moments(writ%out(out_magnets)%handle, gr, st, ions, writ%lmm_r, iter)
1015 end if
1016
1017 if (writ%out(out_tot_m)%write) then
1018 call td_write_tot_mag(writ%out(out_tot_m)%handle, gr, st, kick, iter)
1019 end if
1020
1021 if (writ%out(out_proj)%write .and. mod(iter, writ%compute_interval) == 0) then
1022 if (writ%out(out_proj)%mpi_grp%is_root()) call write_iter_set(writ%out(out_proj)%handle, iter)
1023 call td_write_proj(writ%out(out_proj)%handle, space, gr, ions, st, writ%gs_st, kick, iter)
1024 end if
1025
1026 if (writ%out(out_floquet)%write) then
1027 call td_write_floquet(namespace, space, hm, ext_partners, gr, st, iter)
1028 end if
1029
1030 if (writ%out(out_kp_proj)%write .and. mod(iter, writ%compute_interval) == 0) then
1031 call td_write_proj_kp(gr, hm%kpoints, st, writ%gs_st, namespace, iter)
1032 end if
1033
1034 if (writ%out(out_coords)%write) then
1035 call td_write_coordinates(writ%out(out_coords)%handle, ions%natoms, ions%space, &
1036 ions%pos, ions%vel, ions%tot_force, iter)
1037 end if
1038
1039 if (writ%out(out_separate_coords)%write) then
1040 call td_write_sep_coordinates(writ%out(out_separate_coords)%handle, ions%natoms, ions%space, &
1041 ions%pos, ions%vel, ions%tot_force, iter, 1)
1042 end if
1043
1044 if (writ%out(out_separate_velocity)%write) then
1045 call td_write_sep_coordinates(writ%out(out_separate_velocity)%handle, ions%natoms, ions%space, &
1046 ions%pos, ions%vel, ions%tot_force, iter, 2)
1047 end if
1048
1049 if (writ%out(out_separate_forces)%write) then
1050 call td_write_sep_coordinates(writ%out(out_separate_forces)%handle, ions%natoms, ions%space, &
1051 ions%pos, ions%vel, ions%tot_force, iter, 3)
1052 end if
1053
1054 if (writ%out(out_temperature)%write) then
1055 call td_write_temperature(writ%out(out_temperature)%handle, writ%out(out_temperature)%mpi_grp, ions, iter)
1056 end if
1057
1058 if (writ%out(out_populations)%write) then
1059 call td_write_populations(writ%out(out_populations)%handle, namespace, space, gr, st, writ, dt, iter)
1060 end if
1061
1062 if (writ%out(out_acc)%write) then
1063 call td_write_acc(writ%out(out_acc)%handle, namespace, space, gr, ions, st, hm, ext_partners, dt, iter)
1064 end if
1065
1066 if (writ%out(out_vel)%write) then
1067 call td_write_vel(writ%out(out_vel)%handle, namespace, gr, st, space, hm, ions, iter)
1068 end if
1069
1070 ! td_write_laser no longer called here, because the whole laser is printed
1071 ! out at the beginning.
1072
1073 if (writ%out(out_energy)%write) then
1074 call td_write_energy(writ%out(out_energy)%handle, writ%out(out_energy)%mpi_grp, hm, iter, ions%kinetic_energy)
1075 end if
1076
1077 if (writ%out(out_gauge_field)%write) then
1078 gfield => list_get_gauge_field(ext_partners)
1079 if(associated(gfield)) then
1080 call gauge_field_output_write(gfield, writ%out(out_gauge_field)%handle, iter)
1081 end if
1082 end if
1083
1084 if (writ%out(out_eigs)%write) then
1085 call td_write_eigs(writ%out(out_eigs)%handle, st, iter)
1086 end if
1087
1088 if (writ%out(out_ion_ch)%write) then
1089 call td_write_ionch(writ%out(out_ion_ch)%handle, gr, st, iter)
1090 end if
1091
1092 if (writ%out(out_total_current)%write) then
1093 call td_write_total_current(writ%out(out_total_current)%handle, space, gr, st, iter)
1094 end if
1095
1096 if (writ%out(out_ionic_current)%write) then
1097 call td_write_ionic_current(writ%out(out_ionic_current)%handle, space, ions, iter)
1098 end if
1099
1100 if (writ%out(out_total_heat_current)%write) then
1101 call td_write_total_heat_current(writ%out(out_total_heat_current)%handle, space, hm, gr, st, iter)
1102 end if
1103
1104 if (writ%out(out_partial_charges)%write) then
1105 call td_write_partial_charges(writ%out(out_partial_charges)%handle, gr, st, &
1106 ions, iter)
1107 end if
1108
1109 if (writ%out(out_n_ex)%write .and. mod(iter, writ%compute_interval) == 0) then
1110 if (writ%out(out_n_ex)%mpi_grp%is_root()) call write_iter_set(writ%out(out_n_ex)%handle, iter)
1111 if (recalculate_gs) then ! Load recomputed GS states
1112 call restart_gs%init(namespace, restart_proj, restart_type_load, mc, ierr, mesh=gr)
1113 call states_elec_load(restart_gs, namespace, space, writ%gs_st, gr, hm%kpoints, fixed_occ=.true., &
1114 ierr=ierr, label = ': Houston states for TDOutput')
1115 call restart_gs%end()
1116 end if
1117
1118 call td_write_n_ex(writ%out(out_n_ex)%handle, outp, namespace, gr, hm%kpoints, st, writ%gs_st, iter)
1119 end if
1120
1121 if (writ%out(out_norm_ks)%write) then
1122 call td_write_norm_ks_orbitals(writ%out(out_norm_ks)%handle, gr, hm%kpoints, st, iter)
1123 end if
1124
1125 if (writ%out(out_cell_parameters)%write) then
1126 call td_write_cell_parameters(writ%out(out_cell_parameters)%handle, ions, iter)
1127 end if
1128
1129 !DFT+U outputs
1130 if (writ%out_dftu(out_dftu_effective_u)%write) then
1131 call td_write_effective_u(writ%out_dftu(out_dftu_effective_u)%handle, &
1132 writ%out_dftu(out_dftu_effective_u)%mpi_grp, hm%lda_u, iter)
1133 end if
1134
1135 if (writ%out(out_q)%write .and. ks%has_photons) then
1136 call td_write_q(writ%out(out_q)%handle, writ%out(out_q)%mpi_grp, space, ks, iter)
1137 end if
1138
1139 if (writ%out(out_mxll_field)%write .and. hm%mxll%calc_field_dip) then
1140 call td_write_mxll_field(writ%out(out_mxll_field)%handle, writ%out(out_mxll_field)%mpi_grp, &
1141 space, hm, dt, iter)
1142 end if
1143
1144 if (writ%out(out_dm_proj_basis)%write .and. mod(iter, writ%compute_interval) == 0) then
1145 if (st%system_grp%is_root()) then
1146 call write_iter_set(writ%out(out_dm_proj_basis)%handle, iter)
1147 call td_write_dm_proj_basis(writ%out(out_dm_proj_basis)%handle, dmp_st, iter)
1148 end if
1149 end if
1150
1151 pop_sub_with_profile(td_write_iter)
1152 end subroutine td_write_iter
1153
1154
1155 ! ---------------------------------------------------------
1156 subroutine td_write_data(writ)
1157 type(td_write_t), intent(inout) :: writ
1158
1159 integer :: iout, ii
1160
1161 push_sub(td_write_data)
1162 call profiling_in("TD_WRITE_DATA")
1163
1164 do iout = 1, out_max
1165 if (iout == out_laser) cycle
1166 if (writ%out(iout)%write) then
1167 if (writ%out(iout)%mpi_grp%is_root()) then
1168 if (writ%out(iout)%resolve_states) then
1169 do ii = writ%out(iout)%hand_start, writ%out(iout)%hand_end
1170 call write_iter_flush(writ%out(iout)%mult_handles(ii))
1171 end do
1172 else
1173 call write_iter_flush(writ%out(iout)%handle)
1174 end if
1175 end if
1176 end if
1177 end do
1178
1179 do iout = 1, out_dftu_max
1180 if (writ%out_dftu(iout)%write .and. writ%out(out_proj)%mpi_grp%is_root()) then
1181 call write_iter_flush(writ%out_dftu(iout)%handle)
1182 end if
1183 end do
1184
1185 call profiling_out("TD_WRITE_DATA")
1186 pop_sub(td_write_data)
1187 end subroutine td_write_data
1188
1189 ! ---------------------------------------------------------
1190 subroutine td_write_output(namespace, space, gr, st, hm, ks, outp, ions, ext_partners, iter, dt)
1191 type(namespace_t), intent(in) :: namespace
1192 type(electron_space_t), intent(in) :: space
1193 type(grid_t), intent(in) :: gr
1194 type(states_elec_t), intent(inout) :: st
1195 type(hamiltonian_elec_t), intent(inout) :: hm
1196 type(v_ks_t), intent(inout) :: ks
1197 type(output_t), intent(in) :: outp
1198 type(ions_t), intent(in) :: ions
1199 type(partner_list_t), intent(in) :: ext_partners
1200 integer, intent(in) :: iter
1201 real(real64), optional, intent(in) :: dt
1202
1203 character(len=256) :: filename
1204
1205 push_sub(td_write_output)
1206 call profiling_in("TD_WRITE_OUTPUT")
1207
1208 ! TODO this now overwrites wf inside st. If this is not wanted need to add an optional overwrite=no flag
1209 if (st%modelmbparticles%nparticle > 0) then
1210 call modelmb_sym_all_states(space, gr, st)
1211 end if
1212
1213 ! now write down the rest
1214 write(filename, '(a,a,i7.7)') trim(outp%iter_dir),"td.", iter ! name of directory
1215
1216 call output_all(outp, namespace, space, filename, gr, ions, iter, st, hm, ks)
1217
1218 call output_modelmb(outp, namespace, space, filename, gr, ions, iter, st)
1219
1220 if (present(dt)) then
1221 call output_scalar_pot(outp, namespace, space, filename, gr, ions, ext_partners, iter*dt)
1222 else
1223 if (iter == 0) call output_scalar_pot(outp, namespace, space, filename, gr, ions, ext_partners)
1224 end if
1225
1226 call profiling_out("TD_WRITE_OUTPUT")
1227 pop_sub(td_write_output)
1228 end subroutine td_write_output
1229
1230 ! ---------------------------------------------------------
1231 subroutine td_write_spin(out_spin, mpi_grp, mesh, st, iter)
1232 type(c_ptr), intent(inout) :: out_spin
1233 type(mpi_grp_t), intent(in) :: mpi_grp
1234 class(mesh_t), intent(in) :: mesh
1235 type(states_elec_t), intent(in) :: st
1236 integer, intent(in) :: iter
1237
1238 character(len=130) :: aux
1239 real(real64) :: spin(3)
1240
1241 push_sub(td_write_spin)
1242
1243 ! The expectation value of the spin operator is half the total magnetic moment
1244 ! This has to be calculated by all nodes
1245 call magnetic_moment(mesh, st, st%rho, spin)
1246 spin = m_half*spin
1247
1248 if (mpi_grp%is_root()) then ! only first node outputs
1249
1250 if (iter == 0) then
1252
1253 !second line -> columns name
1255 if (st%d%ispin == spinors) then
1256 write(aux, '(a2,18x)') 'Sx'
1257 call write_iter_header(out_spin, aux)
1258 write(aux, '(a2,18x)') 'Sy'
1259 call write_iter_header(out_spin, aux)
1260 end if
1261 write(aux, '(a2,18x)') 'Sz'
1262 call write_iter_header(out_spin, aux)
1264
1266 end if
1267
1269 select case (st%d%ispin)
1270 case (spin_polarized)
1271 call write_iter_double(out_spin, spin(3), 1)
1272 case (spinors)
1273 call write_iter_double(out_spin, spin(1:3), 3)
1274 end select
1276
1277 end if
1278
1279 pop_sub(td_write_spin)
1280 end subroutine td_write_spin
1281
1282
1283 ! ---------------------------------------------------------
1284 subroutine td_write_local_magnetic_moments(out_magnets, gr, st, ions, lmm_r, iter)
1285 type(c_ptr), intent(inout) :: out_magnets
1286 type(grid_t), intent(in) :: gr
1287 type(states_elec_t), intent(in) :: st
1288 type(ions_t), intent(in) :: ions
1289 real(real64), intent(in) :: lmm_r
1290 integer, intent(in) :: iter
1291
1292 integer :: ia
1293 character(len=50) :: aux
1294 real(real64), allocatable :: lmm(:,:)
1295
1297
1298 !get the atoms` magnetization. This has to be calculated by all nodes
1299 safe_allocate(lmm(1:3, 1:ions%natoms))
1300 call magnetic_local_moments(gr, st, ions, gr%der%boundaries, st%rho, lmm_r, lmm)
1301
1302 if (st%system_grp%is_root()) then ! only first node outputs
1303
1304 if (iter == 0) then
1306
1307 !second line -> columns name
1309 do ia = 1, ions%natoms
1310 if (st%d%ispin == spinors) then
1311 write(aux, '(a2,i2.2,16x)') 'mx', ia
1313 write(aux, '(a2,i2.2,16x)') 'my', ia
1315 end if
1316 write(aux, '(a2,i2.2,16x)') 'mz', ia
1318 end do
1320
1322 end if
1323
1325 do ia = 1, ions%natoms
1326 select case (st%d%ispin)
1327 case (spin_polarized)
1328 call write_iter_double(out_magnets, lmm(3, ia), 1)
1329 case (spinors)
1330 call write_iter_double(out_magnets, lmm(1:3, ia), 3)
1331 end select
1332 end do
1334 end if
1335
1336 safe_deallocate_a(lmm)
1337
1339 end subroutine td_write_local_magnetic_moments
1340
1341 ! ---------------------------------------------------------
1342 subroutine td_write_tot_mag(out_magnets, mesh, st, kick, iter)
1343 type(c_ptr), intent(inout) :: out_magnets
1344 class(mesh_t), intent(in) :: mesh
1345 type(states_elec_t), intent(in) :: st
1346 type(kick_t), intent(in) :: kick
1347 integer, intent(in) :: iter
1348
1349 complex(real64), allocatable :: tm(:,:)
1350 integer :: ii, iq
1351
1352 push_sub(td_write_tot_mag)
1353
1354 safe_allocate(tm(1:6,1:kick%nqvec))
1355
1356 do iq = 1, kick%nqvec
1357 call magnetic_total_magnetization(mesh, st, kick%qvector(:,iq), tm(1:6,iq))
1358 end do
1359
1360 if (st%system_grp%is_root()) then ! only first node outputs
1361
1362 if (iter == 0) then
1363 call td_write_print_header_init(out_magnets)
1364 call kick_write(kick, out = out_magnets)
1365
1366 !second line -> columns name
1367 call write_iter_header_start(out_magnets)
1368 call write_iter_header(out_magnets, 'Re[m_x(q)]')
1369 call write_iter_header(out_magnets, 'Im[m_x(q)]')
1370 call write_iter_header(out_magnets, 'Re[m_y(q)]')
1371 call write_iter_header(out_magnets, 'Im[m_y(q)]')
1372 call write_iter_header(out_magnets, 'Re[m_z(q)]')
1373 call write_iter_header(out_magnets, 'Im[m_z(q)]')
1374 call write_iter_header(out_magnets, 'Re[m_x(-q)]')
1375 call write_iter_header(out_magnets, 'Im[m_x(-q)]')
1376 call write_iter_header(out_magnets, 'Re[m_y(-q)]')
1377 call write_iter_header(out_magnets, 'Im[m_y(-q)]')
1378 call write_iter_header(out_magnets, 'Re[m_z(-q)]')
1379 call write_iter_header(out_magnets, 'Im[m_z(-q)]')
1380 call write_iter_nl(out_magnets)
1381
1382 call td_write_print_header_end(out_magnets)
1383 end if
1384
1385 call write_iter_start(out_magnets)
1386 do iq = 1, kick%nqvec
1387 do ii = 1, 6
1388 call write_iter_double(out_magnets, real(tm(ii, iq), real64), 1)
1389 call write_iter_double(out_magnets, aimag(tm(ii, iq)), 1)
1390 end do
1391 end do
1392 call write_iter_nl(out_magnets)
1393 end if
1394
1395 safe_deallocate_a(tm)
1396
1397 pop_sub(td_write_tot_mag)
1398 end subroutine td_write_tot_mag
1399
1400
1401 ! ---------------------------------------------------------
1409 subroutine td_write_angular(out_angular, namespace, space, gr, ions, hm, st, kick, iter)
1410 type(c_ptr), intent(inout) :: out_angular
1411 type(namespace_t), intent(in) :: namespace
1412 class(space_t), intent(in) :: space
1413 type(grid_t), intent(in) :: gr
1414 type(ions_t), intent(inout) :: ions
1415 type(hamiltonian_elec_t), intent(inout) :: hm
1416 type(states_elec_t), intent(inout) :: st
1417 type(kick_t), intent(in) :: kick
1418 integer, intent(in) :: iter
1419
1420 integer :: idir
1421 character(len=130) :: aux
1422 real(real64) :: angular(3)
1423 class(perturbation_magnetic_t), pointer :: angular_momentum
1424
1425 push_sub(td_write_angular)
1426
1427 angular_momentum => perturbation_magnetic_t(namespace, ions)
1428 do idir = 1, 3
1429 call angular_momentum%setup_dir(idir)
1430 !we have to multiply by 2, because the perturbation returns L/2
1431 angular(idir) = &
1432 m_two*real(angular_momentum%zstates_elec_expectation_value(namespace, space, gr, hm, st), real64)
1433 end do
1434 safe_deallocate_p(angular_momentum)
1435
1436 if (st%system_grp%is_root()) then ! Only first node outputs
1438 if (iter == 0) then
1439 call td_write_print_header_init(out_angular)
1440
1441 write(aux, '(a15,i2)') '# nspin ', st%d%nspin
1442 call write_iter_string(out_angular, aux)
1443 call write_iter_nl(out_angular)
1444
1445 call kick_write(kick, out = out_angular)
1446
1447 !second line -> columns name
1448 call write_iter_header_start(out_angular)
1449 write(aux, '(a4,18x)') '<Lx>'
1450 call write_iter_header(out_angular, aux)
1451 write(aux, '(a4,18x)') '<Ly>'
1452 call write_iter_header(out_angular, aux)
1453 write(aux, '(a4,18x)') '<Lz>'
1454 call write_iter_header(out_angular, aux)
1455 call write_iter_nl(out_angular)
1456
1457 !third line -> should hold the units.
1458 call write_iter_string(out_angular, '#[Iter n.]')
1459 call write_iter_header(out_angular, '[' // trim(units_abbrev(units_out%time)) // ']')
1460 call write_iter_header(out_angular, '[hbar]')
1461 call write_iter_header(out_angular, '[hbar]')
1462 call write_iter_header(out_angular, '[hbar]')
1463 call write_iter_nl(out_angular)
1464
1465 call td_write_print_header_end(out_angular)
1466 end if
1467
1468 call write_iter_start(out_angular)
1469 call write_iter_double(out_angular, angular(1:3), 3)
1470 call write_iter_nl(out_angular)
1471
1472 end if
1473
1474 pop_sub(td_write_angular)
1475 end subroutine td_write_angular
1476
1477
1480 subroutine td_write_multipole(out_multip, space, gr, ions, st, lmax, kick, iter)
1481 type(td_write_prop_t), intent(inout) :: out_multip
1482 class(space_t), intent(in) :: space
1483 type(grid_t), intent(in) :: gr
1484 type(ions_t), intent(in) :: ions
1485 type(states_elec_t), intent(inout) :: st
1486 integer, intent(in) :: lmax
1487 type(kick_t), intent(in) :: kick
1488 integer, intent(in) :: iter
1489
1490 integer :: ist
1491 real(real64), allocatable :: rho(:,:)
1492
1493 push_sub(td_write_multipole)
1494
1495 if (out_multip%resolve_states) then
1496 safe_allocate(rho(1:gr%np_part, 1:st%d%nspin))
1497 rho(:,:) = m_zero
1498
1499 do ist = st%st_start, st%st_end
1500 call density_calc(st, gr, rho, istin = ist)
1501 call td_write_multipole_r(out_multip%mult_handles(ist), space, gr, ions, st, lmax, kick, rho, iter, &
1502 mpi_grp = out_multip%mpi_grp)
1503 end do
1505 safe_deallocate_a(rho)
1506
1507 else
1508 if (allocated(st%frozen_rho)) then
1509 safe_allocate(rho(1:gr%np, 1:st%d%nspin))
1510 call lalg_copy(gr%np, st%d%nspin, st%rho, rho)
1511 call lalg_axpy(gr%np, st%d%nspin, m_one, st%frozen_rho, rho)
1512
1513 call td_write_multipole_r(out_multip%handle, space, gr, ions, st, lmax, kick, rho, iter)
1514
1515 safe_deallocate_a(rho)
1516 else
1517 call td_write_multipole_r(out_multip%handle, space, gr, ions, st, lmax, kick, st%rho, iter)
1518 end if
1519
1520 end if
1521
1522 pop_sub(td_write_multipole)
1523 end subroutine td_write_multipole
1524
1525
1527 subroutine td_write_multipole_r(out_multip, space, mesh, ions, st, lmax, kick, rho, iter, mpi_grp)
1528 type(c_ptr), intent(inout) :: out_multip
1529 class(space_t), intent(in) :: space
1530 class(mesh_t), intent(in) :: mesh
1531 type(ions_t), intent(in) :: ions
1532 type(states_elec_t), intent(in) :: st
1533 integer, intent(in) :: lmax
1534 type(kick_t), intent(in) :: kick
1535 real(real64), intent(in) :: rho(:,:)
1536 integer, intent(in) :: iter
1537 type(mpi_grp_t), optional, intent(in) :: mpi_grp
1538
1539
1540 integer :: is, idir, ll, mm, add_lm
1541 character(len=120) :: aux
1542 real(real64) :: ionic_dipole(ions%space%dim)
1543 real(real64), allocatable :: multipole(:,:)
1544 type(mpi_grp_t) :: mpi_grp_
1545
1546 push_sub(td_write_multipole_r)
1547
1548 ! We cannot output multipoles beyond the dipole for higher dimensions
1549 assert(.not. (lmax > 1 .and. space%dim > 3))
1550
1551 mpi_grp_ = st%system_grp
1552 if (present(mpi_grp)) mpi_grp_ = mpi_grp
1553
1554 if (mpi_grp_%is_root().and.iter == 0) then
1555 call td_write_print_header_init(out_multip)
1556
1557 write(aux, '(a15,i2)') '# nspin ', st%d%nspin
1558 call write_iter_string(out_multip, aux)
1559 call write_iter_nl(out_multip)
1560
1561 write(aux, '(a15,i2)') '# lmax ', lmax
1562 call write_iter_string(out_multip, aux)
1563 call write_iter_nl(out_multip)
1564
1565 call kick_write(kick, out = out_multip)
1566
1567 call write_iter_header_start(out_multip)
1568
1569 do is = 1, st%d%nspin
1570 write(aux,'(a18,i1,a1)') 'Electronic charge(', is,')'
1571 call write_iter_header(out_multip, aux)
1572 if (lmax > 0) then
1573 do idir = 1, space%dim
1574 write(aux, '(4a1,i1,a1)') '<', index2axis(idir), '>', '(', is,')'
1575 call write_iter_header(out_multip, aux)
1576 end do
1577 end if
1578 do ll = 2, lmax
1579 do mm = -ll, ll
1580 write(aux, '(a2,i2,a4,i2,a2,i1,a1)') 'l=', ll, ', m=', mm, ' (', is,')'
1581 call write_iter_header(out_multip, aux)
1582 end do
1583 end do
1584 end do
1585 call write_iter_nl(out_multip)
1586
1587 ! units
1588 call write_iter_string(out_multip, '#[Iter n.]')
1589 call write_iter_header(out_multip, '[' // trim(units_abbrev(units_out%time)) // ']')
1590
1591 do is = 1, st%d%nspin
1592 call write_iter_header(out_multip, 'Electrons')
1593 if (lmax > 0) then
1594 do idir = 1, space%dim
1595 call write_iter_header(out_multip, '[' // trim(units_abbrev(units_out%length)) // ']')
1596 end do
1597 end if
1598 do ll = 2, lmax
1599 do mm = -ll, ll
1600 write(aux, '(a,a2,i1)') trim(units_abbrev(units_out%length)), "**", ll
1601 call write_iter_header(out_multip, '[' // trim(aux) // ']')
1602 end do
1603 end do
1604 end do
1605 call write_iter_nl(out_multip)
1606
1607 call td_write_print_header_end(out_multip)
1608 end if
1609
1610 if (space%dim > 3 .and. lmax == 1) then
1611 ! For higher dimensions we can only have up to the dipole
1612 safe_allocate(multipole(1:space%dim+1, 1:st%d%nspin))
1613 else
1614 safe_allocate(multipole(1:(lmax + 1)**2, 1:st%d%nspin))
1615 end if
1616 multipole(:,:) = m_zero
1617
1618 do is = 1, st%d%nspin
1619 call dmf_multipoles(mesh, rho(:,is), lmax, multipole(:,is))
1620 end do
1621
1622 if (lmax > 0) then
1623 ionic_dipole = ions%dipole()
1624 do is = 1, st%d%nspin
1625 multipole(2:space%dim+1, is) = -ionic_dipole(1:space%dim)/st%d%nspin - multipole(2:space%dim+1, is)
1626 end do
1627 end if
1628
1629 if (mpi_grp_%is_root()) then
1630 call write_iter_start(out_multip)
1631 do is = 1, st%d%nspin
1632 call write_iter_double(out_multip, units_from_atomic(units_out%length**0, multipole(1, is)), 1)
1633 if (lmax > 0) then
1634 do idir = 1, space%dim
1635 call write_iter_double(out_multip, units_from_atomic(units_out%length, multipole(1+idir, is)), 1)
1636 end do
1637 end if
1638 add_lm = space%dim + 2
1639 do ll = 2, lmax
1640 do mm = -ll, ll
1641 call write_iter_double(out_multip, units_from_atomic(units_out%length**ll, multipole(add_lm, is)), 1)
1642 add_lm = add_lm + 1
1643 end do
1644 end do
1645 end do
1646 call write_iter_nl(out_multip)
1647 end if
1648
1649 safe_deallocate_a(multipole)
1650 pop_sub(td_write_multipole_r)
1651 end subroutine td_write_multipole_r
1652
1653 ! ---------------------------------------------------------
1654 subroutine td_write_ftchd(out_ftchd, space, mesh, st, kick, iter)
1655 type(c_ptr), intent(inout) :: out_ftchd
1656 class(space_t), intent(in) :: space
1657 class(mesh_t), intent(in) :: mesh
1658 type(states_elec_t), intent(in) :: st
1659 type(kick_t), intent(in) :: kick
1660 integer, intent(in) :: iter
1661
1662 integer :: is, ip, idir
1663 character(len=120) :: aux, aux2
1664 real(real64) :: ftchd_bessel
1665 complex(real64) :: ftchd
1666 real(real64) :: ylm
1667 real(real64), allocatable :: integrand_bessel(:)
1668 complex(real64), allocatable :: integrand(:)
1669
1670 push_sub(td_write_ftchd)
1671
1672 if (st%system_grp%is_root().and.iter == 0) then
1673 call td_write_print_header_init(out_ftchd)
1674
1675 write(aux,'(a15, i2)') '# qkickmode ', kick%qkick_mode
1676 call write_iter_string(out_ftchd, aux)
1677 call write_iter_nl(out_ftchd)
1678
1679 if (kick%qkick_mode == qkickmode_bessel) then
1680 write(aux,'(a15, i0.3, 1x, i0.3)') '# ll, mm ', kick%qbessel_l, kick%qbessel_m
1681 call write_iter_string(out_ftchd, aux)
1682 call write_iter_nl(out_ftchd)
1683 end if
1684
1685 if (kick%qkick_mode == qkickmode_bessel) then
1686 write(aux, '(a15, f9.6)') '# qlength ', kick%qlength
1687 else ! sin or cos
1688 write(aux, '(a15)') '# qvector '
1689 do idir = 1, space%dim
1690 write(aux2, '(f9.5)') kick%qvector(idir,1)
1691 aux = trim(aux) // trim(aux2)
1692 end do
1693 end if
1694 call write_iter_string(out_ftchd, aux)
1695 call write_iter_nl(out_ftchd)
1696
1697 write(aux, '(a15,f18.12)') '# kick strength', kick%delta_strength
1698 call write_iter_string(out_ftchd, aux)
1699 call write_iter_nl(out_ftchd)
1700
1701 call write_iter_header_start(out_ftchd)
1702 if (kick%qkick_mode == qkickmode_bessel) then
1703 write(aux,'(a17)') 'int(j_l*Y_lm*rho)'
1704 else
1705 write(aux,'(a12)') 'Real, Imag'
1706 end if
1707 call write_iter_header(out_ftchd, aux)
1708 call write_iter_nl(out_ftchd)
1709
1710 ! units
1711 call write_iter_string(out_ftchd, '#[Iter n.]')
1712 call write_iter_header(out_ftchd, '[' // trim(units_abbrev(units_out%time)) // ']')
1713 call write_iter_nl(out_ftchd)
1714 call td_write_print_header_end(out_ftchd)
1715
1716 end if
1717
1718 ftchd = m_zero
1719
1720 ! If kick mode is exp, sin, or cos, apply the normal Fourier transform
1721 if (kick%qkick_mode /= qkickmode_bessel) then
1722 safe_allocate(integrand(1:mesh%np))
1723 integrand = m_zero
1724 do is = 1, st%d%nspin
1725 do ip = 1, mesh%np
1726 integrand(ip) = integrand(ip) + st%rho(ip, is) * exp(-m_zi*sum(mesh%x(1:space%dim, ip)*kick%qvector(1:space%dim, 1)))
1727 end do
1728 end do
1729 ftchd = zmf_integrate(mesh, integrand)
1730 safe_deallocate_a(integrand)
1731 else
1732 ftchd_bessel = m_zero
1733 safe_allocate(integrand_bessel(1:mesh%np))
1734 integrand_bessel = m_zero
1735 do is = 1, st%d%nspin
1736 do ip = 1, mesh%np
1737 call ylmr_real(mesh%x(1:3, ip), kick%qbessel_l, kick%qbessel_m, ylm)
1738 integrand_bessel(ip) = integrand_bessel(ip) + st%rho(ip, is) * &
1739 loct_sph_bessel(kick%qbessel_l, kick%qlength*norm2(mesh%x(:, ip)))*ylm
1740 end do
1741 end do
1742 ftchd_bessel = dmf_integrate(mesh, integrand_bessel)
1743 safe_deallocate_a(integrand_bessel)
1744 end if
1745
1746 if (st%system_grp%is_root()) then
1747 call write_iter_start(out_ftchd)
1748 if (kick%qkick_mode == qkickmode_bessel) then
1749 call write_iter_double(out_ftchd, ftchd_bessel, 1)
1750 else ! exp, sin, cos
1751 call write_iter_double(out_ftchd, real(ftchd), 1)
1752 call write_iter_double(out_ftchd, aimag(ftchd), 1)
1753 end if
1754 call write_iter_nl(out_ftchd)
1755 end if
1756
1757 pop_sub(td_write_ftchd)
1758 end subroutine td_write_ftchd
1759
1760 ! ---------------------------------------------------------
1761 subroutine td_write_temperature(out_temperature, mpi_grp, ions, iter)
1762 type(c_ptr), intent(inout) :: out_temperature
1763 type(mpi_grp_t), intent(in) :: mpi_grp
1764 type(ions_t), intent(in) :: ions
1765 integer, intent(in) :: iter
1766
1767 if (.not. mpi_grp%is_root()) return ! only first node outputs
1768
1769 push_sub(td_write_temperature)
1770
1771 if (iter == 0) then
1772 call td_write_print_header_init(out_temperature)
1773
1774 ! first line: column names
1775 call write_iter_header_start(out_temperature)
1776 call write_iter_header(out_temperature, 'Temperature')
1777 call write_iter_nl(out_temperature)
1778
1779 ! second line: units
1780 call write_iter_string(out_temperature, '#[Iter n.]')
1781 call write_iter_header(out_temperature, '[' // trim(units_abbrev(units_out%time)) // ']')
1782 call write_iter_string(out_temperature, ' [K]')
1783 call write_iter_nl(out_temperature)
1784
1785 call td_write_print_header_end(out_temperature)
1786 end if
1787
1788 call write_iter_start(out_temperature)
1789
1791
1792 call write_iter_nl(out_temperature)
1793
1794 pop_sub(td_write_temperature)
1795 end subroutine td_write_temperature
1796
1797
1798 ! ---------------------------------------------------------
1799 subroutine td_write_populations(out_populations, namespace, space, mesh, st, writ, dt, iter)
1800 type(c_ptr), intent(inout) :: out_populations
1801 type(namespace_t), intent(in) :: namespace
1802 class(space_t), intent(in) :: space
1803 class(mesh_t), intent(in) :: mesh
1804 type(states_elec_t), intent(inout) :: st
1805 type(td_write_t), intent(in) :: writ
1806 real(real64), intent(in) :: dt
1807 integer, intent(in) :: iter
1808
1809 integer :: ist
1810 character(len=6) :: excited_name
1811 complex(real64) :: gsp
1812 complex(real64), allocatable :: excited_state_p(:)
1813 complex(real64), allocatable :: dotprodmatrix(:, :, :)
1814
1815
1816 push_sub(td_write_populations)
1817
1818 safe_allocate(dotprodmatrix(1:writ%gs_st%nst, 1:st%nst, 1:st%nik))
1819 call zstates_elec_matrix(writ%gs_st, st, mesh, dotprodmatrix)
1820
1821
1822 !See comment in zstates_elec_mpdotp
1823 assert(.not. space%is_periodic())
1824
1825 ! all processors calculate the projection
1826 gsp = zstates_elec_mpdotp(namespace, mesh, writ%gs_st, st, dotprodmatrix)
1827
1828 if (writ%n_excited_states > 0) then
1829 safe_allocate(excited_state_p(1:writ%n_excited_states))
1830 do ist = 1, writ%n_excited_states
1831 excited_state_p(ist) = zstates_elec_mpdotp(namespace, mesh, writ%excited_st(ist), st, dotprodmatrix)
1832 end do
1833 end if
1834
1835 if (st%system_grp%is_root()) then
1836 if (iter == 0) then
1837 call td_write_print_header_init(out_populations)
1838
1839 ! first line -> column names
1840 call write_iter_header_start(out_populations)
1841 call write_iter_header(out_populations, 'Re<Phi_gs|Phi(t)>')
1842 call write_iter_header(out_populations, 'Im<Phi_gs|Phi(t)>')
1843 do ist = 1, writ%n_excited_states
1844 write(excited_name,'(a2,i3,a1)') 'P(', ist,')'
1845 call write_iter_header(out_populations, 'Re<'//excited_name//'|Phi(t)>')
1846 call write_iter_header(out_populations, 'Im<'//excited_name//'|Phi(t)>')
1847 end do
1848 call write_iter_nl(out_populations)
1849
1850 ! second line -> units
1851 call write_iter_string(out_populations, '#[Iter n.]')
1852 call write_iter_header(out_populations, '[' // trim(units_abbrev(units_out%time)) // ']')
1853 call write_iter_nl(out_populations)
1854
1855 call td_write_print_header_end(out_populations)
1856 end if
1857
1858 ! cannot call write_iter_start, for the step is not 1
1859 call write_iter_int(out_populations, iter, 1)
1860 call write_iter_double(out_populations, units_from_atomic(units_out%time, iter*dt), 1)
1861 call write_iter_double(out_populations, real(gsp), 1)
1862 call write_iter_double(out_populations, aimag(gsp), 1)
1863 do ist = 1, writ%n_excited_states
1864 call write_iter_double(out_populations, real(excited_state_p(ist)), 1)
1865 call write_iter_double(out_populations, aimag(excited_state_p(ist)), 1)
1866 end do
1867 call write_iter_nl(out_populations)
1868 end if
1869
1870 if (writ%n_excited_states > 0) then
1871 safe_deallocate_a(excited_state_p)
1872 end if
1873 safe_deallocate_a(dotprodmatrix)
1874 pop_sub(td_write_populations)
1875 end subroutine td_write_populations
1876
1877
1878 ! ---------------------------------------------------------
1879 subroutine td_write_acc(out_acc, namespace, space, gr, ions, st, hm, ext_partners, dt, iter)
1880 type(c_ptr), intent(inout) :: out_acc
1881 type(namespace_t), intent(in) :: namespace
1882 class(space_t), intent(in) :: space
1883 type(grid_t), intent(in) :: gr
1884 type(ions_t), intent(inout) :: ions
1885 type(states_elec_t), intent(inout) :: st
1886 type(hamiltonian_elec_t), intent(inout) :: hm
1887 type(partner_list_t), intent(in) :: ext_partners
1888 real(real64), intent(in) :: dt
1889 integer, intent(in) :: iter
1890
1891 integer :: idim
1892 character(len=7) :: aux
1893 real(real64) :: acc(space%dim)
1895 push_sub(td_write_acc)
1896
1897 if (iter == 0 .and. st%system_grp%is_root()) then
1898 call td_write_print_header_init(out_acc)
1899
1900 ! first line -> column names
1901 call write_iter_header_start(out_acc)
1902 do idim = 1, space%dim
1903 write(aux, '(a4,i1,a1)') 'Acc(', idim, ')'
1904 call write_iter_header(out_acc, aux)
1905 end do
1906 call write_iter_nl(out_acc)
1907
1908 ! second line: units
1909 call write_iter_string(out_acc, '#[Iter n.]')
1910 call write_iter_header(out_acc, '[' // trim(units_abbrev(units_out%time)) // ']')
1911 do idim = 1, space%dim
1912 call write_iter_header(out_acc, '[' // trim(units_abbrev(units_out%acceleration)) // ']')
1913 end do
1914 call write_iter_nl(out_acc)
1915 call td_write_print_header_end(out_acc)
1916 end if
1917
1918 call td_calc_tacc(namespace, space, gr, ions, ext_partners, st, hm, acc, dt*iter)
1919
1920 if (st%system_grp%is_root()) then
1921 call write_iter_start(out_acc)
1922 acc = units_from_atomic(units_out%acceleration, acc)
1923 call write_iter_double(out_acc, acc, space%dim)
1924 call write_iter_nl(out_acc)
1925 end if
1926
1927 pop_sub(td_write_acc)
1928 end subroutine td_write_acc
1929
1930 ! ---------------------------------------------------------
1931 subroutine td_write_vel(out_vel, namespace, gr, st, space, hm, ions, iter)
1932 type(c_ptr), intent(inout) :: out_vel
1933 type(namespace_t), intent(in) :: namespace
1934 type(grid_t), intent(in) :: gr
1935 type(states_elec_t), intent(in) :: st
1936 type(space_t), intent(in) :: space
1937 type(hamiltonian_elec_t), intent(in) :: hm
1938 type(ions_t), intent(in) :: ions
1939 integer, intent(in) :: iter
1940
1941 integer :: idim
1942 character(len=7) :: aux
1943 real(real64) :: vel(space%dim)
1944
1945 push_sub(td_write_vel)
1946
1947 if (iter == 0 .and. st%system_grp%is_root()) then
1948 call td_write_print_header_init(out_vel)
1949
1950 ! first line -> column names
1951 call write_iter_header_start(out_vel)
1952 do idim = 1, space%dim
1953 write(aux, '(a4,i1,a1)') 'Vel(', idim, ')'
1954 call write_iter_header(out_vel, aux)
1955 end do
1956 call write_iter_nl(out_vel)
1957
1958 ! second line: units
1959 call write_iter_string(out_vel, '#[Iter n.]')
1960 call write_iter_header(out_vel, '[' // trim(units_abbrev(units_out%time)) // ']')
1961 do idim = 1, space%dim
1962 call write_iter_header(out_vel, '[' // trim(units_abbrev(units_out%velocity)) // ']')
1963 end do
1964 call write_iter_nl(out_vel)
1965 call td_write_print_header_end(out_vel)
1966 end if
1967
1968 call td_calc_tvel(namespace, gr, st, space, hm, ions, vel)
1969
1970 if (st%system_grp%is_root()) then
1971 call write_iter_start(out_vel)
1972 vel = units_from_atomic(units_out%velocity, vel)
1973 call write_iter_double(out_vel, vel, space%dim)
1974 call write_iter_nl(out_vel)
1975 end if
1976
1977 pop_sub(td_write_vel)
1978 end subroutine td_write_vel
1979
1980
1981 ! ---------------------------------------------------------
1982 subroutine td_write_laser(out_laser, mpi_grp, space, lasers, dt, iter)
1983 type(c_ptr), intent(inout) :: out_laser
1984 type(mpi_grp_t), intent(in) :: mpi_grp
1985 class(space_t), intent(in) :: space
1986 type(lasers_t), intent(inout) :: lasers
1987 real(real64), intent(in) :: dt
1988 integer, intent(in) :: iter
1989
1990 integer :: il, idir
1991 real(real64) :: field(space%dim)
1992 real(real64) :: ndfield(space%dim)
1993 character(len=80) :: aux
1994
1995 if (.not. mpi_grp%is_root()) return ! only first node outputs
1996
1997 ! no PUSH SUB, called too often
1998
1999 if (iter == 0) then
2000 call td_write_print_header_init(out_laser)
2001
2002 ! first line
2003 write(aux, '(a7,e20.12,3a)') '# dt = ', units_from_atomic(units_out%time, dt), &
2004 " [", trim(units_abbrev(units_out%time)), "]"
2005 call write_iter_string(out_laser, aux)
2006 call write_iter_nl(out_laser)
2007
2008 call write_iter_header_start(out_laser)
2009 do il = 1, lasers%no_lasers
2010 select case (laser_kind(lasers%lasers(il)))
2011 case (e_field_electric)
2012 do idir = 1, space%dim
2013 write(aux, '(a,i1,a)') 'E(', idir, ')'
2014 call write_iter_header(out_laser, aux)
2015 end do
2016 case (e_field_magnetic)
2017 do idir = 1, space%dim
2018 write(aux, '(a,i1,a)') 'B(', idir, ')'
2019 call write_iter_header(out_laser, aux)
2020 end do
2022 do idir = 1, space%dim
2023 write(aux, '(a,i1,a)') 'A(', idir, ')'
2024 call write_iter_header(out_laser, aux)
2025 end do
2027 write(aux, '(a,i1,a)') 'e(t)'
2028 call write_iter_header(out_laser, aux)
2029 end select
2030 end do
2031
2032 if (lasers_with_nondipole_field(lasers)) then
2033 do idir = 1, space%dim
2034 write(aux, '(a,i1,a)') 'A^M(', idir, ')'
2035 call write_iter_header(out_laser, aux)
2036 end do
2037 end if
2038 call write_iter_nl(out_laser)
2039
2040 call write_iter_string(out_laser, '#[Iter n.]')
2041 call write_iter_header(out_laser, '[' // trim(units_abbrev(units_out%time)) // ']')
2042
2043 ! Note that we do not print out units of E, B, or A, but rather units of e*E, e*B, e*A.
2044 ! (force, force, and energy, respectively). The reason is that the units of E, B or A
2045 ! are ugly.
2046 do il = 1, lasers%no_lasers
2047 select case (laser_kind(lasers%lasers(il)))
2049 aux = '[' // trim(units_abbrev(units_out%force)) // ']'
2050 do idir = 1, space%dim
2051 call write_iter_header(out_laser, aux)
2052 end do
2054 aux = '[' // trim(units_abbrev(units_out%energy)) // ']'
2055 do idir = 1, space%dim
2056 call write_iter_header(out_laser, aux)
2057 end do
2059 aux = '[adim]'
2060 call write_iter_header(out_laser, aux)
2061 end select
2062 end do
2063
2064 if (lasers_with_nondipole_field(lasers)) then
2065 aux = '[' // trim(units_abbrev(units_out%energy)) // ']'
2066 do idir = 1, space%dim
2067 call write_iter_header(out_laser, aux)
2068 end do
2069 end if
2070
2071
2072 call write_iter_nl(out_laser)
2073
2074 call td_write_print_header_end(out_laser)
2075 end if
2076
2077 call write_iter_start(out_laser)
2078
2079 do il = 1, lasers%no_lasers
2080 field = m_zero
2081 call laser_field(lasers%lasers(il), field(1:space%dim), iter*dt)
2082 select case (laser_kind(lasers%lasers(il)))
2084 field = units_from_atomic(units_out%force, field)
2085 call write_iter_double(out_laser, field, space%dim)
2087 field = units_from_atomic(units_out%energy, field)
2088 call write_iter_double(out_laser, field, space%dim)
2090 call write_iter_double(out_laser, field(1), 1)
2091 end select
2092 end do
2093
2094 if (lasers_with_nondipole_field(lasers)) then
2095 call lasers_nondipole_laser_field_step(lasers, ndfield, iter*dt)
2096 call lasers_set_nondipole_parameters(lasers, ndfield, iter*dt)
2097 call write_iter_double(out_laser, ndfield, space%dim)
2098 end if
2099 call write_iter_nl(out_laser)
2100
2101 end subroutine td_write_laser
2102
2103
2104 ! ---------------------------------------------------------
2105 subroutine td_write_energy(out_energy, mpi_grp, hm, iter, ke)
2106 type(c_ptr), intent(inout) :: out_energy
2107 type(mpi_grp_t), intent(in) :: mpi_grp
2108 type(hamiltonian_elec_t), intent(in) :: hm
2109 integer, intent(in) :: iter
2110 real(real64), intent(in) :: ke
2111
2112 integer :: ii
2113
2114 integer :: n_columns
2115
2116 if (.not. mpi_grp%is_root()) return ! only first node outputs
2117
2118 push_sub(td_write_energy)
2119
2120 n_columns = 9
2121
2122 if (iter == 0) then
2123 call td_write_print_header_init(out_energy)
2124
2125 ! first line -> column names
2126 call write_iter_header_start(out_energy)
2127 call write_iter_header(out_energy, 'Total')
2128 call write_iter_header(out_energy, 'Kinetic (ions)')
2129 call write_iter_header(out_energy, 'Ion-Ion')
2130 call write_iter_header(out_energy, 'Electronic')
2131 call write_iter_header(out_energy, 'Eigenvalues')
2132 call write_iter_header(out_energy, 'Hartree')
2133 call write_iter_header(out_energy, 'Int[n v_xc]')
2134 call write_iter_header(out_energy, 'Exchange')
2135 call write_iter_header(out_energy, 'Correlation')
2136
2137 if (hm%pcm%run_pcm) then
2138 call write_iter_header(out_energy, 'E_M-solvent')
2139 n_columns = n_columns + 1
2140 end if
2141
2142 if (hm%lda_u_level /= dft_u_none) then
2143 call write_iter_header(out_energy, 'Hubbard')
2144 n_columns = n_columns + 1
2145 end if
2146
2147 call write_iter_nl(out_energy)
2148
2149 ! units
2150
2151 call write_iter_string(out_energy, '#[Iter n.]')
2152 call write_iter_header(out_energy, '[' // trim(units_abbrev(units_out%time)) // ']')
2153
2154 do ii = 1, n_columns
2155 call write_iter_header(out_energy, '[' // trim(units_abbrev(units_out%energy)) // ']')
2156 end do
2157 call write_iter_nl(out_energy)
2158
2159
2160 call td_write_print_header_end(out_energy)
2161 end if
2162
2163 call write_iter_start(out_energy)
2164 call write_iter_double(out_energy, units_from_atomic(units_out%energy, hm%energy%total+ke), 1)
2165 call write_iter_double(out_energy, units_from_atomic(units_out%energy, ke), 1)
2166 call write_iter_double(out_energy, units_from_atomic(units_out%energy, hm%ep%eii), 1)
2167 call write_iter_double(out_energy, units_from_atomic(units_out%energy, hm%energy%total-hm%ep%eii), 1)
2168 call write_iter_double(out_energy, units_from_atomic(units_out%energy, hm%energy%eigenvalues), 1)
2169 call write_iter_double(out_energy, units_from_atomic(units_out%energy, hm%energy%hartree), 1)
2170 call write_iter_double(out_energy, units_from_atomic(units_out%energy, hm%energy%intnvxc), 1)
2171 call write_iter_double(out_energy, units_from_atomic(units_out%energy, hm%energy%exchange), 1)
2172 call write_iter_double(out_energy, units_from_atomic(units_out%energy, hm%energy%correlation), 1)
2173
2174 !adding the molecule-solvent electrostatic interaction
2175 if (hm%pcm%run_pcm) call write_iter_double(out_energy, &
2176 units_from_atomic(units_out%energy, hm%energy%int_ee_pcm + hm%energy%int_en_pcm + &
2177 hm%energy%int_nn_pcm + hm%energy%int_ne_pcm), 1)
2178
2179 if (hm%lda_u_level /= dft_u_none) then
2180 call write_iter_double(out_energy, units_from_atomic(units_out%energy, hm%energy%dft_u), 1)
2181 end if
2182
2183 call write_iter_nl(out_energy)
2184
2185 pop_sub(td_write_energy)
2186 end subroutine td_write_energy
2187
2188 ! ---------------------------------------------------------
2189 subroutine td_write_eigs(out_eigs, st, iter)
2190 type(c_ptr), intent(inout) :: out_eigs
2191 type(states_elec_t), intent(in) :: st
2192 integer, intent(in) :: iter
2193
2194 integer :: ii, is
2195 character(len=68) :: buf
2196
2197 push_sub(td_write_eigs)
2198
2199 if (.not. st%system_grp%is_root()) then
2201 return ! only first node outputs
2202 end if
2203
2204
2205 if (iter == 0) then
2206 call td_write_print_header_init(out_eigs)
2207
2208 write(buf, '(a15,i2)') '# nst ', st%nst
2209 call write_iter_string(out_eigs, buf)
2210 call write_iter_nl(out_eigs)
2211
2212 write(buf, '(a15,i2)') '# nspin ', st%d%nspin
2213 call write_iter_string(out_eigs, buf)
2214 call write_iter_nl(out_eigs)
2215
2216 ! first line -> column names
2217 call write_iter_header_start(out_eigs)
2218 do is = 1, st%d%kpt%nglobal
2219 do ii = 1, st%nst
2220 write(buf, '(a,i4)') 'Eigenvalue ',ii
2221 call write_iter_header(out_eigs, buf)
2222 end do
2223 end do
2224 call write_iter_nl(out_eigs)
2225
2226 ! second line: units
2227 call write_iter_string(out_eigs, '#[Iter n.]')
2228 call write_iter_header(out_eigs, '[' // trim(units_abbrev(units_out%time)) // ']')
2229 do is = 1, st%d%kpt%nglobal
2230 do ii = 1, st%nst
2231 call write_iter_header(out_eigs, '[' // trim(units_abbrev(units_out%energy)) // ']')
2232 end do
2233 end do
2234 call write_iter_nl(out_eigs)
2235 call td_write_print_header_end(out_eigs)
2236 end if
2237
2238 call write_iter_start(out_eigs)
2239 do is = 1, st%d%kpt%nglobal
2240 do ii =1 , st%nst
2241 call write_iter_double(out_eigs, units_from_atomic(units_out%energy, st%eigenval(ii,is)), 1)
2242 end do
2243 end do
2244 call write_iter_nl(out_eigs)
2245
2246 pop_sub(td_write_eigs)
2247 end subroutine td_write_eigs
2248
2249 ! ---------------------------------------------------------
2250 subroutine td_write_ionch(out_ionch, mesh, st, iter)
2251 type(c_ptr), intent(inout) :: out_ionch
2252 class(mesh_t), intent(in) :: mesh
2253 type(states_elec_t), intent(in) :: st
2254 integer, intent(in) :: iter
2255
2256 integer :: ii, ist, Nch, ik, idim
2257 character(len=68) :: buf
2258 real(real64), allocatable :: ch(:), occ(:)
2259 real(real64), allocatable :: occbuf(:)
2260
2261 push_sub(td_write_ionch)
2262
2263
2264 nch = st%nst * st%d%kpt%nglobal * st%d%dim
2265 safe_allocate(ch(0: nch))
2266 safe_allocate(occ(0: nch))
2267
2268 occ(:) = m_zero
2269 ii = 1
2270 do ik = 1, st%nik
2271 do ist = 1, st%nst
2272 do idim = 1, st%d%dim
2273 if (st%st_start <= ist .and. ist <= st%st_end .and. &
2274 st%d%kpt%start <= ik .and. ik <= st%d%kpt%end) then
2275 occ(ii) = st%occ(ist, ik)
2276 end if
2277 ii = ii+1
2278 end do
2279 end do
2280 end do
2281
2282
2283 if (st%parallel_in_states) then
2284 safe_allocate(occbuf(0: nch))
2285 occbuf(:) = m_zero
2286 call st%mpi_grp%allreduce(occ(0), occbuf(0), nch+1, mpi_double_precision, mpi_sum)
2287 occ(:) = occbuf(:)
2288 safe_deallocate_a(occbuf)
2289 end if
2290
2291 !Calculate the channels
2292 call td_calc_ionch(mesh, st, ch, nch)
2293
2294
2295 if (.not. st%system_grp%is_root()) then
2296 safe_deallocate_a(ch)
2297 safe_deallocate_a(occ)
2298 pop_sub(td_write_ionch)
2299 return ! only first node outputs
2300 end if
2301
2302
2303 if (iter == 0) then
2304 call td_write_print_header_init(out_ionch)
2305
2306 ! first line -> column names
2307 call write_iter_header_start(out_ionch)
2308
2309 do ii = 0, nch
2310 if (occ(ii)>m_zero .or. ii == 0) then
2311 write(buf, '(a,f4.1,a)') 'Pion(',occ(ii)*ii,'+, t)'
2312 call write_iter_header(out_ionch, buf)
2313 end if
2314 end do
2315 call write_iter_nl(out_ionch)
2316
2317 ! second line: units
2318 call write_iter_string(out_ionch, '#[Iter n.]')
2319 call write_iter_header(out_ionch, '[' // trim(units_abbrev(units_out%time)) // ']')
2320 do ii = 0, nch
2321 if (occ(ii)>m_zero .or. ii == 0) then
2322 call write_iter_header(out_ionch, '[' // trim(units_abbrev(unit_one)) // ']')
2323 end if
2324 end do
2325 call write_iter_nl(out_ionch)
2326 call td_write_print_header_end(out_ionch)
2327 end if
2328
2329 call write_iter_start(out_ionch)
2330 do ii =0 , nch
2331 if (occ(ii)>m_zero .or. ii == 0) then
2332 call write_iter_double(out_ionch, units_from_atomic(unit_one, ch(ii)), 1)
2333 end if
2334 end do
2335 call write_iter_nl(out_ionch)
2336
2337 safe_deallocate_a(ch)
2338 safe_deallocate_a(occ)
2339
2340 pop_sub(td_write_ionch)
2341 end subroutine td_write_ionch
2342
2343 ! ---------------------------------------------------------
2344 subroutine td_write_proj(out_proj, space, mesh, ions, st, gs_st, kick, iter)
2345 type(c_ptr), intent(inout) :: out_proj
2346 class(space_t), intent(in) :: space
2347 class(mesh_t), intent(in) :: mesh
2348 type(ions_t), intent(in) :: ions
2349 type(states_elec_t), intent(inout) :: st
2350 type(states_elec_t), intent(in) :: gs_st
2351 type(kick_t), intent(in) :: kick
2352 integer, intent(in) :: iter
2353
2354 complex(real64), allocatable :: projections(:,:,:)
2355 character(len=80) :: aux
2356 integer :: ik, ist, uist, idir
2357
2358 push_sub(td_write_proj)
2359
2360 if (iter == 0) then
2361 if (st%system_grp%is_root()) then
2362 call td_write_print_header_init(out_proj)
2363
2364 write(aux, '(a15,i2)') '# nspin ', st%d%nspin
2365 call write_iter_string(out_proj, aux)
2366 call write_iter_nl(out_proj)
2367
2368 call kick_write(kick, out = out_proj)
2369
2370 call write_iter_string(out_proj, "#%")
2371 call write_iter_nl(out_proj)
2372
2373 write(aux, '(a,i8)') "# nik ", st%nik
2374 call write_iter_string(out_proj, aux)
2375 call write_iter_nl(out_proj)
2376
2377 write(aux, '(a,2i8)') "# st ", gs_st%st_start, st%nst
2378 call write_iter_string(out_proj, aux)
2379 call write_iter_nl(out_proj)
2380
2381 write(aux, '(a,2i8)') "# ust ", gs_st%st_start, gs_st%st_end
2382 call write_iter_string(out_proj, aux)
2383 call write_iter_nl(out_proj)
2384
2385 do ik = 1, st%nik
2386 call write_iter_string(out_proj, "# w(ik)*occ(ist,ik) ")
2387 do ist = gs_st%st_start, st%nst
2388 call write_iter_double(out_proj, st%kweights(ik)*st%occ(ist, ik), 1)
2389 end do
2390 call write_iter_nl(out_proj)
2391 end do
2392
2393 call write_iter_header_start(out_proj)
2394 do ik = 1, st%nik
2395 do ist = gs_st%st_start, st%nst
2396 do uist = gs_st%st_start, gs_st%st_end
2397 write(aux, '(i4,a,i4)') ist, ' -> ', uist
2398 call write_iter_header(out_proj, 'Re {'//trim(aux)//'}')
2399 call write_iter_header(out_proj, 'Im {'//trim(aux)//'}')
2400 end do
2401 end do
2402 end do
2403 call write_iter_nl(out_proj)
2404
2405 end if
2406
2407 !The dipole matrix elements cannot be computed like that for solids
2408 if (.not. space%is_periodic()) then
2409
2410 safe_allocate(projections(1:st%nst, gs_st%st_start:gs_st%st_end, 1:st%nik))
2411 do idir = 1, space%dim
2412 projections = m_z0
2413
2414 call dipole_matrix_elements(idir)
2415
2416 if (st%system_grp%is_root()) then
2417 write(aux, '(a,i1,a)') "<i|x_", idir, "|a>"
2418 call write_iter_string(out_proj, "# ------")
2419 call write_iter_header(out_proj, aux)
2420 do ik = 1, st%nik
2421 do ist = gs_st%st_start, st%st_end
2422 do uist = gs_st%st_start, gs_st%st_end
2423 call write_iter_double(out_proj, real(projections(ist, uist, ik), real64), 1)
2424 call write_iter_double(out_proj, aimag(projections(ist, uist, ik)), 1)
2425 end do
2426 end do
2427 end do
2428 call write_iter_nl(out_proj)
2429
2430 end if
2431 end do
2432 safe_deallocate_a(projections)
2433
2434 end if
2435
2436 if (st%system_grp%is_root()) then
2437 call td_write_print_header_end(out_proj)
2438 end if
2440 end if
2441
2442 safe_allocate(projections(1:st%nst, gs_st%st_start:gs_st%st_end, 1:st%nik))
2443 projections(:,:,:) = m_z0
2444 call calc_projections(mesh, st, gs_st, projections)
2445
2446 if (st%system_grp%is_root()) then
2447 call write_iter_start(out_proj)
2448 do ik = 1, st%nik
2449 do ist = gs_st%st_start, st%nst
2450 do uist = gs_st%st_start, gs_st%st_end
2451 call write_iter_double(out_proj, real(projections(ist, uist, ik), real64), 1)
2452 call write_iter_double(out_proj, aimag(projections(ist, uist, ik)), 1)
2453 end do
2454 end do
2455 end do
2456 call write_iter_nl(out_proj)
2457 end if
2458
2459 safe_deallocate_a(projections)
2460 pop_sub(td_write_proj)
2461
2462 contains
2463 ! ---------------------------------------------------------
2464 subroutine dipole_matrix_elements(dir)
2465 integer, intent(in) :: dir
2466
2467 integer :: uist, ist, ik, idim
2468 real(real64) :: n_dip(space%dim)
2469 complex(real64), allocatable :: xpsi(:,:)
2470 complex(real64), allocatable :: psi(:, :), gspsi(:, :)
2471
2473
2474 safe_allocate(psi(1:mesh%np, 1:st%d%dim))
2475 safe_allocate(gspsi(1:mesh%np, 1:st%d%dim))
2476 safe_allocate(xpsi(1:mesh%np, 1:st%d%dim))
2477
2478 do ik = st%d%kpt%start, st%d%kpt%end
2479 do ist = st%st_start, st%st_end
2480 call states_elec_get_state(st, mesh, ist, ik, psi)
2481 do uist = gs_st%st_start, gs_st%st_end
2482 call states_elec_get_state(gs_st, mesh, uist, ik, gspsi)
2483
2484 do idim = 1, st%d%dim
2485 xpsi(1:mesh%np, idim) = mesh%x_t(1:mesh%np, dir)*gspsi(1:mesh%np, idim)
2486 end do
2487 projections(ist, uist, ik) = -zmf_dotp(mesh, st%d%dim, psi, xpsi, reduce = .false.)
2488
2489 end do
2490 end do
2491 end do
2492
2493 safe_deallocate_a(xpsi)
2494 safe_deallocate_a(gspsi)
2495 safe_deallocate_a(psi)
2496
2497 call comm_allreduce(st%dom_st_kpt_mpi_grp, projections)
2498
2499 ! n_dip is not defined for more than space%dim
2500 n_dip = ions%dipole()
2501 do ik = 1, st%nik
2502 do ist = gs_st%st_start, st%nst
2503 do uist = gs_st%st_start, gs_st%st_end
2504 projections(ist, uist, ik) = projections(ist, uist, ik) - n_dip(dir)
2505 end do
2506 end do
2507 end do
2508
2509
2511 end subroutine dipole_matrix_elements
2512
2513 end subroutine td_write_proj
2514
2515 ! ---------------------------------------------------------
2519 ! ---------------------------------------------------------
2520 subroutine td_write_n_ex(out_nex, outp, namespace, mesh, kpoints, st, gs_st, iter)
2521 type(c_ptr), intent(inout) :: out_nex
2522 type(output_t), intent(in) :: outp
2523 type(namespace_t), intent(in) :: namespace
2524 class(mesh_t), intent(in) :: mesh
2525 type(kpoints_t), intent(in) :: kpoints
2526 type(states_elec_t), intent(inout) :: st
2527 type(states_elec_t), intent(inout) :: gs_st
2528 integer, intent(in) :: iter
2529
2530 complex(real64), allocatable :: projections(:,:)
2531 character(len=80) :: aux, dir
2532 integer :: ik, ikpt, ist, uist, err
2533 real(real64) :: Nex, weight
2534 integer :: gs_nst
2535 real(real64), allocatable :: Nex_kpt(:)
2536
2537
2538 push_sub(td_write_n_ex)
2539
2540 if (iter == 0) then
2541 if (st%system_grp%is_root()) then
2542 call td_write_print_header_init(out_nex)
2543
2544 write(aux, '(a15,i2)') '# nspin ', st%d%nspin
2545 call write_iter_string(out_nex, aux)
2546 call write_iter_nl(out_nex)
2547
2548 call write_iter_string(out_nex, "#%")
2549 call write_iter_nl(out_nex)
2550
2551 write(aux, '(a,i8)') "# nik ", st%nik
2552 call write_iter_string(out_nex, aux)
2553 call write_iter_nl(out_nex)
2554
2555 write(aux, '(a,2i8)') "# st ", gs_st%st_start, st%nst
2556 call write_iter_string(out_nex, aux)
2557 call write_iter_nl(out_nex)
2558
2559 write(aux, '(a,2i8)') "# ust ", gs_st%st_start, gs_st%st_end
2560 call write_iter_string(out_nex, aux)
2561 call write_iter_nl(out_nex)
2562
2563 call write_iter_header_start(out_nex)
2564 call write_iter_header(out_nex, '# iter t Nex(t)')
2565 call write_iter_nl(out_nex)
2566
2567 end if
2568
2569 if (st%system_grp%is_root()) then
2570 call td_write_print_header_end(out_nex)
2571 end if
2572
2573 end if
2574
2575 !We only need the occupied GS states
2576 gs_nst = 1
2577 do ik = 1, st%nik
2578 do ist = 1, gs_st%nst
2579 if (gs_st%occ(ist, ik) > m_min_occ .and. ist > gs_nst) gs_nst = ist
2580 end do
2581 end do
2582
2583 safe_allocate(projections(1:gs_nst, 1:st%nst))
2584
2585 safe_allocate(nex_kpt(1:st%nik))
2586 nex_kpt = m_zero
2587 do ik = st%d%kpt%start, st%d%kpt%end
2588 ikpt = st%d%get_kpoint_index(ik)
2589 call zstates_elec_calc_projections(st, gs_st, namespace, mesh, ik, projections, gs_nst)
2590 do ist = 1, gs_nst
2591 weight = st%kweights(ik) * gs_st%occ(ist, ik)/ st%smear%el_per_state
2592 do uist = st%st_start, st%st_end
2593 nex_kpt(ikpt) = nex_kpt(ikpt) - weight * st%occ(uist, ik) * abs(projections(ist, uist))**2
2594 end do
2595 end do
2596 nex_kpt(ikpt) = nex_kpt(ikpt) + sum(st%occ(st%st_start:st%st_end, ik))*st%kweights(ik)
2597 end do
2598
2599 if (st%parallel_in_states .or. st%d%kpt%parallel) then
2600 call comm_allreduce(st%st_kpt_mpi_grp, nex_kpt)
2601 end if
2602
2603 nex = sum(nex_kpt)
2604
2605 if (st%system_grp%is_root()) then
2606 call write_iter_start(out_nex)
2607 call write_iter_double(out_nex, nex, 1)
2608 call write_iter_nl(out_nex)
2609
2610 ! now write down the k-resolved part
2611 write(dir, '(a,a,i7.7)') trim(outp%iter_dir),"td.", iter ! name of directory
2612
2613 call io_function_output_global_bz(outp%how(option__output__current_kpt) &
2614 + outp%how(option__output__density_kpt), dir, "n_excited_el_kpt", namespace, &
2615 kpoints, nex_kpt, unit_one, err)
2616 end if
2617
2618 safe_deallocate_a(projections)
2619 safe_deallocate_a(nex_kpt)
2620
2621 pop_sub(td_write_n_ex)
2622 end subroutine td_write_n_ex
2623
2624 ! ---------------------------------------------------------
2629 ! ---------------------------------------------------------
2630 subroutine calc_projections(mesh, st, gs_st, projections)
2631 class(mesh_t), intent(in) :: mesh
2632 type(states_elec_t), intent(inout) :: st
2633 type(states_elec_t), intent(in) :: gs_st
2634 complex(real64), intent(inout) :: projections(1:st%nst, gs_st%st_start:gs_st%nst, 1:st%nik)
2635
2636 integer :: uist, ist, ik
2637 complex(real64), allocatable :: psi(:, :), gspsi(:, :)
2638 push_sub(calc_projections)
2639
2640 safe_allocate(psi(1:mesh%np, 1:st%d%dim))
2641 safe_allocate(gspsi(1:mesh%np, 1:st%d%dim))
2642
2643 projections(:,:,:) = m_zero
2644
2645 do ik = st%d%kpt%start, st%d%kpt%end
2646 do ist = st%st_start, st%st_end
2647 call states_elec_get_state(st, mesh, ist, ik, psi)
2648 do uist = gs_st%st_start, gs_st%nst
2649 call states_elec_get_state(gs_st, mesh, uist, ik, gspsi)
2650 projections(ist, uist, ik) = zmf_dotp(mesh, st%d%dim, psi, gspsi, reduce = .false.)
2651 end do
2652 end do
2653 end do
2654
2655 safe_deallocate_a(psi)
2656 safe_deallocate_a(gspsi)
2657
2658 call comm_allreduce(st%dom_st_kpt_mpi_grp, projections)
2659
2660 pop_sub(calc_projections)
2661 end subroutine calc_projections
2662
2663
2664 subroutine td_write_proj_kp(mesh, kpoints, st, gs_st, namespace, iter)
2665 class(mesh_t), intent(in) :: mesh
2666 type(kpoints_t), intent(in) :: kpoints
2667 type(states_elec_t), intent(in) :: st
2668 type(states_elec_t), intent(inout) :: gs_st
2669 type(namespace_t), intent(in) :: namespace
2670 integer, intent(in) :: iter
2671
2672 complex(real64), allocatable :: proj(:,:), psi(:,:,:), gs_psi(:,:,:), temp_state(:,:)
2673 character(len=80) :: filename1, filename2
2674 integer :: ik,ist, jst, file, idim, nk_proj
2675
2676 push_sub(td_write_proj_kp)
2677
2678 write(filename1,'(I10)') iter
2679 filename1 = 'td.general/projections_iter_'//trim(adjustl(filename1))
2680 file = 9845623
2681
2682 safe_allocate(proj(1:gs_st%nst, 1:gs_st%nst))
2683 safe_allocate(psi(1:gs_st%nst,1:gs_st%d%dim,1:mesh%np))
2684 safe_allocate(gs_psi(1:gs_st%nst,1:gs_st%d%dim,1:mesh%np))
2685 safe_allocate(temp_state(1:mesh%np,1:gs_st%d%dim))
2686
2687 ! Project only k-points that have a zero weight.
2688 ! Why? It is unlikely that one is interested in the projections
2689 ! of the Monkhorst-Pack kpoints, but instead we assume that
2690 ! the user has specified a k-path with zero weights
2691 nk_proj = kpoints%nik_skip
2692
2693 do ik = kpoints%reduced%npoints-nk_proj+1, kpoints%reduced%npoints
2694 ! reset arrays
2695 psi(1:gs_st%nst, 1:gs_st%d%dim, 1:mesh%np)= m_zero
2696 gs_psi(1:gs_st%nst, 1:gs_st%d%dim, 1:mesh%np)= m_zero
2697 ! open file for writing
2698 if (st%system_grp%is_root()) then
2699 write(filename2,'(I10)') ik
2700 filename2 = trim(adjustl(filename1))//'_ik_'//trim(adjustl(filename2))
2701 file = io_open(filename2, namespace, action='write')
2702 end if
2703 ! get all states at ik that are locally stored (ground state and td-states)
2704 do ist=gs_st%st_start,gs_st%st_end
2705 if (state_kpt_is_local(gs_st, ist, ik)) then
2706 call states_elec_get_state(st, mesh, ist, ik,temp_state)
2707 do idim = 1,gs_st%d%dim
2708 psi(ist,idim,1:mesh%np) = temp_state(1:mesh%np,idim)
2709 end do
2710 call states_elec_get_state(gs_st, mesh, ist, ik, temp_state)
2711 do idim = 1,gs_st%d%dim
2712 gs_psi(ist,idim,1:mesh%np) = temp_state(1:mesh%np,idim)
2713 end do
2714 end if
2715 end do
2716 ! collect states at ik from all processes in one array
2717 call comm_allreduce(st%system_grp, psi)
2718 call comm_allreduce(st%system_grp, gs_psi)
2719
2720 ! compute the overlaps as a matrix product
2721 assert(mesh%np_global*gs_st%d%dim < huge(0_int32))
2722 proj(1:gs_st%nst, 1:gs_st%nst) = m_zero
2723 call zgemm('n', &
2724 'c', &
2725 gs_st%nst, &
2726 gs_st%nst, &
2727 i8_to_i4(mesh%np_global*gs_st%d%dim), &
2728 cmplx(mesh%volume_element, m_zero, real64) , &
2729 psi(1, 1, 1), &
2730 ubound(psi, dim = 1), &
2731 gs_psi(1, 1, 1), &
2732 ubound(gs_psi, dim = 1), &
2733 m_z0, &
2734 proj(1, 1), &
2735 ubound(proj, dim = 1))
2736
2737 ! write to file
2738 if (st%system_grp%is_root()) then
2739 do ist = 1, gs_st%nst
2740 do jst = 1, gs_st%nst
2741 write(file,'(I3,1x,I3,1x,e13.6,1x,e13.6,2x)') ist, jst, proj(ist,jst)
2742 end do
2743 end do
2744 call io_close(file)
2745 end if
2746
2747 end do! ik
2748
2749 safe_deallocate_a(proj)
2750 safe_deallocate_a(psi)
2751 safe_deallocate_a(gs_psi)
2752 safe_deallocate_a(temp_state)
2753
2754 pop_sub(td_write_proj_kp)
2755 end subroutine td_write_proj_kp
2756
2757 !---------------------------------------
2758 subroutine td_write_floquet(namespace, space, hm, ext_partners, gr, st, iter)
2759 type(namespace_t), intent(in) :: namespace
2760 class(space_t), intent(in) :: space
2761 type(hamiltonian_elec_t), intent(inout) :: hm
2762 type(partner_list_t), intent(in) :: ext_partners
2763 type(grid_t), intent(in) :: gr
2764 type(states_elec_t), intent(inout) :: st
2765 integer, intent(in) :: iter
2766
2767 complex(real64), allocatable :: hmss(:,:), psi(:,:,:), hpsi(:,:,:), temp_state1(:,:)
2768 complex(real64), allocatable :: HFloquet(:,:,:), HFloq_eff(:,:), temp(:,:)
2769 real(real64), allocatable :: eigenval(:), bands(:,:)
2770 character(len=80) :: filename
2771 integer :: it, nT, ik, ist, in, im, file, idim, nik, ik_count
2772 integer :: Forder, Fdim, m0, n0, n1, nst, ii, jj, lim_nst
2773 logical :: downfolding
2774 type(states_elec_t) :: hm_st
2775
2776 real(real64) :: dt, Tcycle, omega
2777
2778 push_sub(td_write_floquet)
2779
2780 downfolding = .false.
2781
2782 ! this does not depend on propagation, so we do it only once
2783 if (.not. iter == 0) then
2784 pop_sub(td_write_floquet)
2785 return
2786 end if
2787
2788 nst = st%nst
2789
2790 !for now no domain distributionallowed
2791 assert(gr%np == gr%np_global)
2792
2793 ! this is used to initialize the hpsi (more effiecient ways?)
2794 call states_elec_copy(hm_st, st)
2795
2796 !%Variable TDFloquetFrequency
2797 !%Type float
2798 !%Default 0
2799 !%Section Time-Dependent::TD Output
2800 !%Description
2801 !% Frequency for the Floquet analysis, this should be the carrier frequency or integer multiples of it.
2802 !% Other options will work, but likely be nonsense.
2803 !%
2804 !%End
2805 call parse_variable(namespace, 'TDFloquetFrequency', m_zero, omega, units_inp%energy)
2806 call messages_print_var_value('Frequency used for Floquet analysis', omega, namespace=namespace)
2807 if (abs(omega) <= m_epsilon) then
2808 message(1) = "Please give a non-zero value for TDFloquetFrequency"
2809 call messages_fatal(1, namespace=namespace)
2810 end if
2811
2812 ! get time of one cycle
2813 tcycle = m_two * m_pi / omega
2814
2815 !%Variable TDFloquetSample
2816 !%Type integer
2817 !%Default 20
2818 !%Section Time-Dependent::TD Output
2819 !%Description
2820 !% Number of points on which one Floquet cycle is sampled in the time-integral of the Floquet analysis.
2821 !%
2822 !%End
2823 call parse_variable(namespace, 'TDFloquetSample',20 ,nt)
2824 call messages_print_var_value('Number of Floquet time-sampling points', nt, namespace=namespace)
2825 dt = tcycle/real(nt, real64)
2826
2827 !%Variable TDFloquetDimension
2828 !%Type integer
2829 !%Default -1
2830 !%Section Time-Dependent::TD Output
2831 !%Description
2832 !% Order of Floquet Hamiltonian. If negative number is given, downfolding is performed.
2833 !%End
2834 call parse_variable(namespace, 'TDFloquetDimension',-1,forder)
2835 if (forder .ge. 0) then
2836 call messages_print_var_value('Order of multiphoton Floquet-Hamiltonian', forder, namespace=namespace)
2837 !Dimension of multiphoton Floquet-Hamiltonian
2838 fdim = 2 * forder + 1
2839 else
2840 message(1) = 'Floquet-Hamiltonian is downfolded'
2841 call messages_info(1, namespace=namespace)
2842 downfolding = .true.
2843 forder = 1
2844 fdim = 3
2845 end if
2846
2847 dt = tcycle/real(nt, real64)
2848
2849 ! we are only interested for k-point with zero weight
2850 nik = hm%kpoints%nik_skip
2851
2852 safe_allocate(hmss(1:nst,1:nst))
2853 safe_allocate( psi(1:nst,1:st%d%dim,1:gr%np))
2854 safe_allocate(hpsi(1:nst,1:st%d%dim,1:gr%np))
2855 safe_allocate(temp_state1(1:gr%np,1:st%d%dim))
2856
2857 ! multiphoton Floquet Hamiltonian, layout:
2858 ! (H_{-n,-m} ... H_{-n,0} ... H_{-n,m})
2859 ! ( . . . . . )
2860 ! H = (H_{0,-m} ... H_{0,0} ... H_{0,m} )
2861 ! ( . . . . . )
2862 ! (H_{n,-m} ... H_{n,0} ... H_{n,m} )
2863 safe_allocate(hfloquet(1:nik,1:nst*fdim, 1:nst*fdim))
2864 hfloquet(1:nik,1:nst*fdim, 1:nst*fdim) = m_zero
2865
2866 ! perform time-integral over one cycle
2867 do it = 1, nt
2868 ! get non-interacting Hamiltonian at time (offset by one cycle to allow for ramp)
2869 call hm%update(gr, namespace, space, ext_partners, time=tcycle+it*dt)
2870 ! get hpsi
2871 call zhamiltonian_elec_apply_all(hm, namespace, gr, st, hm_st)
2872
2873 ! project Hamiltonian into grounstates for zero weight k-points
2874 ik_count = 0
2875
2876 do ik = hm%kpoints%reduced%npoints-nik+1, hm%kpoints%reduced%npoints
2877 ik_count = ik_count + 1
2878
2879 psi(1:nst, 1:st%d%dim, 1:gr%np)= m_zero
2880 hpsi(1:nst, 1:st%d%dim, 1:gr%np)= m_zero
2881
2882 do ist = st%st_start, st%st_end
2883 if (state_kpt_is_local(st, ist, ik)) then
2884 call states_elec_get_state(st, gr, ist, ik,temp_state1)
2885 do idim = 1, st%d%dim
2886 psi(ist, idim, 1:gr%np) = temp_state1(1:gr%np, idim)
2887 end do
2888 call states_elec_get_state(hm_st, gr, ist, ik,temp_state1)
2889 do idim = 1, st%d%dim
2890 hpsi(ist, idim, 1:gr%np) = temp_state1(1:gr%np, idim)
2891 end do
2892 end if
2893 end do
2894 call comm_allreduce(st%system_grp, psi)
2895 call comm_allreduce(st%system_grp, hpsi)
2896 assert(gr%np_global*st%d%dim < huge(0_int32))
2897 hmss(1:nst,1:nst) = m_zero
2898 call zgemm( 'n', &
2899 'c', &
2900 nst, &
2901 nst, &
2902 i8_to_i4(gr%np_global*st%d%dim), &
2903 cmplx(gr%volume_element, m_zero, real64) , &
2904 hpsi(1, 1, 1), &
2905 ubound(hpsi, dim = 1), &
2906 psi(1, 1, 1), &
2907 ubound(psi, dim = 1), &
2908 m_z0, &
2909 hmss(1, 1), &
2910 ubound(hmss, dim = 1))
2911
2912 hmss(1:nst,1:nst) = conjg(hmss(1:nst,1:nst))
2913
2914 ! accumulate the Floqeut integrals
2915 do in = -forder, forder
2916 do im = -forder, forder
2917 ii = (in+forder) * nst
2918 jj = (im+forder) * nst
2919 hfloquet(ik_count, ii+1:ii+nst, jj+1:jj+nst) = &
2920 hfloquet(ik_count, ii+1:ii+nst, jj+1:jj+nst) + hmss(1:nst, 1:nst) * exp(-(in-im)*m_zi*omega*it*dt)
2921 ! diagonal term
2922 if (in == im) then
2923 do ist = 1, nst
2924 hfloquet(ik_count, ii+ist, ii+ist) = hfloquet(ik_count, ii+ist, ii+ist) + in*omega
2925 end do
2926 end if
2927 end do
2928 end do
2929 end do !ik
2930
2931 end do ! it
2932
2933 hfloquet(:,:,:) = m_one/nt*hfloquet(:,:,:)
2934
2935 ! diagonalize Floquet Hamiltonian
2936 if (downfolding) then
2937 ! here perform downfolding
2938 safe_allocate(hfloq_eff(1:nst,1:nst))
2939 safe_allocate(eigenval(1:nst))
2940 safe_allocate(bands(1:nik,1:nst))
2941
2942 hfloq_eff(1:nst,1:nst) = m_zero
2943 do ik = 1, nik
2944 ! the HFloquet blocks are copied directly out of the super matrix
2945 m0 = nst ! the m=0 start position
2946 n0 = nst ! the n=0 start postion
2947 n1 = 2*nst ! the n=+1 start postion
2948 hfloq_eff(1:nst, 1:nst) = hfloquet(ik, n0+1:n0+nst, m0+1:m0+nst) + &
2949 m_one/omega*(matmul(hfloquet(ik, 1:nst, m0+1:m0+nst), hfloquet(ik, n1+1:n1+nst, m0+1:m0+nst))- &
2950 matmul(hfloquet(ik, n1+1:n1+nst, m0+1:m0+nst), hfloquet(ik, 1:nst, m0+1:m0+nst)))
2951
2952 call lalg_eigensolve(nst, hfloq_eff, eigenval)
2953 bands(ik,1:nst) = eigenval(1:nst)
2954 end do
2955 safe_deallocate_a(hfloq_eff)
2956 else
2957 ! the full Floquet
2958 safe_allocate(eigenval(1:nst*fdim))
2959 safe_allocate(bands(1:nik,1:nst*fdim))
2960 safe_allocate(temp(1:nst*fdim, 1:nst*fdim))
2961
2962 do ik = 1, nik
2963 temp(1:nst*fdim, 1:nst*fdim) = hfloquet(ik, 1:nst*fdim, 1:nst*fdim)
2964 call lalg_eigensolve(nst*fdim, temp, eigenval)
2965 bands(ik, 1:nst*fdim) = eigenval(1:nst*fdim)
2966 end do
2967 end if
2968
2969 !write bandstructure to file
2970 if (downfolding) then
2971 lim_nst = nst
2972 filename = "downfolded_floquet_bands"
2973 else
2974 lim_nst = nst*fdim
2975 filename = "floquet_bands"
2976 end if
2977 ! write bands (full or downfolded)
2978 if (st%system_grp%is_root()) then
2979 file = 987254
2980 file = io_open(filename, namespace, action = 'write')
2981 do ik = 1,nik
2982 do ist = 1,lim_nst
2983 write(file,'(e13.6, 1x)',advance='no') bands(ik,ist)
2984 end do
2985 write(file,'(1x)')
2986 end do
2987 call io_close(file)
2988 end if
2989
2990 if (.not. downfolding) then
2991 ! for the full Floquet case compute also the trivially shifted
2992 ! Floquet bands for reference (i.e. setting H_{nm}=0 for n!=m)
2993 bands(1:nik, 1:nst*fdim) = m_zero
2994 do ik = 1, nik
2995 temp(1:nst*fdim,1:nst*fdim) = m_zero
2996 do jj = 0, fdim - 1
2997 ii = jj * nst
2998 temp(ii+1:ii+nst, ii+1:ii+nst) = hfloquet(ik, ii+1:ii+nst, ii+1:ii+nst)
2999 end do
3000 call lalg_eigensolve(nst*fdim, temp, eigenval)
3001 bands(ik, 1:nst*fdim) = eigenval(1:nst*fdim)
3002 end do
3003
3004 if (st%system_grp%is_root()) then
3005 filename = 'trivial_floquet_bands'
3006 file = io_open(filename, namespace, action = 'write')
3007 do ik=1,nik
3008 do ist = 1,lim_nst
3009 write(file,'(e13.6, 1x)', advance='no') bands(ik,ist)
3010 end do
3011 write(file,'(1x)')
3012 end do
3013 call io_close(file)
3014 end if
3015 end if
3016
3017 ! reset time in Hamiltonian
3018 call hm%update(gr, namespace, space, ext_partners, time=m_zero)
3019
3020 safe_deallocate_a(hmss)
3021 safe_deallocate_a(psi)
3022 safe_deallocate_a(hpsi)
3023 safe_deallocate_a(temp_state1)
3024 safe_deallocate_a(hfloquet)
3025 safe_deallocate_a(eigenval)
3026 safe_deallocate_a(bands)
3027 safe_deallocate_a(temp)
3028 call states_elec_end(hm_st)
3029
3030 pop_sub(td_write_floquet)
3031
3032 end subroutine td_write_floquet
3033
3034 ! ---------------------------------------------------------
3035 subroutine td_write_total_current(out_total_current, space, mesh, st, iter)
3036 type(c_ptr), intent(inout) :: out_total_current
3037 class(space_t), intent(in) :: space
3038 class(mesh_t), intent(in) :: mesh
3039 type(states_elec_t), intent(in) :: st
3040 integer, intent(in) :: iter
3041
3042 integer :: idir, ispin
3043 character(len=50) :: aux
3044 real(real64) :: total_current(space%dim), abs_current(space%dim)
3045
3046 push_sub(td_write_total_current)
3047
3048 if (st%system_grp%is_root() .and. iter == 0) then
3049 call td_write_print_header_init(out_total_current)
3050
3051 ! first line: column names
3052 call write_iter_header_start(out_total_current)
3053
3054 do idir = 1, space%dim
3055 write(aux, '(a2,a1,a1)') 'I(', index2axis(idir), ')'
3056 call write_iter_header(out_total_current, aux)
3057 end do
3058
3059 do idir = 1, space%dim
3060 write(aux, '(a10,a1,a1)') 'IntAbs(j)(', index2axis(idir), ')'
3061 call write_iter_header(out_total_current, aux)
3062 end do
3063
3064 do ispin = 1, st%d%nspin
3065 do idir = 1, space%dim
3066 write(aux, '(a4,i1,a1,a1,a1)') 'I-sp', ispin, '(', index2axis(idir), ')'
3067 call write_iter_header(out_total_current, aux)
3068 end do
3069 end do
3070
3071 call write_iter_nl(out_total_current)
3072
3073 call td_write_print_header_end(out_total_current)
3074 end if
3075
3076 assert(allocated(st%current))
3077
3078 if (st%system_grp%is_root()) then
3079 call write_iter_start(out_total_current)
3080 end if
3081
3082 total_current = 0.0_real64
3083 do idir = 1, space%dim
3084 do ispin = 1, st%d%spin_channels
3085 total_current(idir) = total_current(idir) + dmf_integrate(mesh, st%current(:, idir, ispin), reduce = .false.)
3086 end do
3087 total_current(idir) = units_from_atomic(units_out%length/units_out%time, total_current(idir))
3088 end do
3089 call mesh%allreduce(total_current, dim = space%dim)
3090
3091 abs_current = 0.0_real64
3092 do idir = 1, space%dim
3093 do ispin = 1, st%d%spin_channels
3094 abs_current(idir) = abs_current(idir) + dmf_integrate(mesh, abs(st%current(:, idir, ispin)), reduce = .false.)
3095 end do
3096 abs_current(idir) = units_from_atomic(units_out%length/units_out%time, abs_current(idir))
3097 end do
3098 call mesh%allreduce(abs_current, dim = space%dim)
3099
3100 if (st%system_grp%is_root()) then
3101 call write_iter_double(out_total_current, total_current, space%dim)
3102 call write_iter_double(out_total_current, abs_current, space%dim)
3103 end if
3104
3105 do ispin = 1, st%d%nspin
3106 total_current = units_from_atomic(units_out%length/units_out%time, dmf_integrate(mesh, space%dim, st%current(:, :, ispin)))
3107
3108 if (st%system_grp%is_root()) then
3109 call write_iter_double(out_total_current, total_current, space%dim)
3110 end if
3111 end do
3112
3113 if (st%system_grp%is_root()) then
3114 call write_iter_nl(out_total_current)
3115 end if
3116
3117 pop_sub(td_write_total_current)
3118 end subroutine td_write_total_current
3119
3120 ! ---------------------------------------------------------
3121 subroutine td_write_ionic_current(out_ionic_current, space, ions, iter)
3122 type(c_ptr), intent(inout) :: out_ionic_current
3123 class(space_t), intent(in) :: space
3124 class(ions_t), intent(in) :: ions
3125 integer, intent(in) :: iter
3126
3127 integer :: idir
3128 character(len=50) :: aux
3129 real(real64) :: ionic_current(space%dim), abs_current(space%dim)
3131 push_sub(td_write_ionic_current)
3132
3133 if (ions%grp%is_root() .and. iter == 0) then
3134 call td_write_print_header_init(out_ionic_current)
3135
3136 ! first line: column names
3137 call write_iter_header_start(out_ionic_current)
3138
3139 do idir = 1, space%dim
3140 write(aux, '(a2,a1,a1)') 'I(', index2axis(idir), ')'
3141 call write_iter_header(out_ionic_current, aux)
3142 end do
3143
3144 do idir = 1, space%dim
3145 write(aux, '(a10,a1,a1)') 'IntAbs(j)(', index2axis(idir), ')'
3146 call write_iter_header(out_ionic_current, aux)
3147 end do
3148
3149 call write_iter_nl(out_ionic_current)
3150
3151 call td_write_print_header_end(out_ionic_current)
3152 end if
3153
3154 ionic_current = ions%current()
3155 abs_current = ions%abs_current()
3156
3157 if (ions%grp%is_root()) then
3158 call write_iter_start(out_ionic_current)
3159
3160 call write_iter_double(out_ionic_current, ionic_current, space%dim)
3161 call write_iter_double(out_ionic_current, abs_current, space%dim)
3162
3163 call write_iter_nl(out_ionic_current)
3164 end if
3165
3166 pop_sub(td_write_ionic_current)
3167 end subroutine td_write_ionic_current
3168
3169
3170 ! ---------------------------------------------------------
3171
3172 subroutine td_write_total_heat_current(write_obj, space, hm, gr, st, iter)
3173 type(c_ptr), intent(inout) :: write_obj
3174 class(space_t), intent(in) :: space
3175 type(hamiltonian_elec_t), intent(inout) :: hm
3176 type(grid_t), intent(in) :: gr
3177 type(states_elec_t), intent(in) :: st
3178 integer, intent(in) :: iter
3179
3180 integer :: idir, ispin
3181 character(len=50) :: aux
3182 real(real64), allocatable :: heat_current(:, :, :)
3183 real(real64) :: total_current(space%dim)
3184
3186
3187 if (st%system_grp%is_root() .and. iter == 0) then
3188 call td_write_print_header_init(write_obj)
3189
3190 ! first line: column names
3191 call write_iter_header_start(write_obj)
3192
3193 do idir = 1, space%dim
3194 write(aux, '(a2,i1,a1)') 'Jh(', idir, ')'
3195 call write_iter_header(write_obj, aux)
3196 end do
3197
3198 call write_iter_nl(write_obj)
3199
3200 call td_write_print_header_end(write_obj)
3201 end if
3202
3203 safe_allocate(heat_current(1:gr%np, 1:space%dim, 1:st%d%nspin))
3204
3205 call current_heat_calculate(space, gr%der, hm, st, heat_current)
3206
3207 if (st%system_grp%is_root()) call write_iter_start(write_obj)
3208
3209 total_current = 0.0_real64
3210 do idir = 1, space%dim
3211 do ispin = 1, st%d%spin_channels
3212 total_current(idir) = total_current(idir) + dmf_integrate(gr, heat_current(:, idir, ispin))
3213 end do
3214 total_current(idir) = units_from_atomic(units_out%energy*units_out%length/units_out%time, total_current(idir))
3215 end do
3217 safe_deallocate_a(heat_current)
3218
3219 if (st%system_grp%is_root()) call write_iter_double(write_obj, total_current, space%dim)
3220
3221 if (st%system_grp%is_root()) call write_iter_nl(write_obj)
3222
3224 end subroutine td_write_total_heat_current
3225
3226
3227 ! ---------------------------------------------------------
3228 subroutine td_write_partial_charges(out_partial_charges, mesh, st, ions, iter)
3229 type(c_ptr), intent(inout) :: out_partial_charges
3230 class(mesh_t), intent(in) :: mesh
3231 type(states_elec_t), intent(in) :: st
3232 type(ions_t), intent(in) :: ions
3233 integer, intent(in) :: iter
3234
3235 integer :: idir
3236 character(len=50) :: aux
3237 real(real64), allocatable :: hirshfeld_charges(:)
3238
3239 push_sub(td_write_partial_charges)
3240
3241 safe_allocate(hirshfeld_charges(1:ions%natoms))
3242
3243 call partial_charges_calculate(mesh, st, ions, hirshfeld_charges)
3244
3245 if (st%system_grp%is_root()) then
3246
3247 if (iter == 0) then
3248
3249 call td_write_print_header_init(out_partial_charges)
3250
3251 ! first line: column names
3252 call write_iter_header_start(out_partial_charges)
3253
3254 do idir = 1, ions%natoms
3255 write(aux, '(a13,i3,a1)') 'hirshfeld(atom=', idir, ')'
3256 call write_iter_header(out_partial_charges, aux)
3257 end do
3258
3259 call write_iter_nl(out_partial_charges)
3260
3261 call td_write_print_header_end(out_partial_charges)
3262 end if
3263
3264 call write_iter_start(out_partial_charges)
3265
3266 call write_iter_double(out_partial_charges, hirshfeld_charges, ions%natoms)
3268 call write_iter_nl(out_partial_charges)
3269 end if
3270
3271 safe_deallocate_a(hirshfeld_charges)
3272
3274 end subroutine td_write_partial_charges
3275
3276 ! ---------------------------------------------------------
3277 subroutine td_write_q(out_q, mpi_grp, space, ks, iter)
3278 type(c_ptr), intent(inout) :: out_q
3279 type(mpi_grp_t), intent(in) :: mpi_grp
3280 class(space_t), intent(in) :: space
3281 type(v_ks_t), intent(in) :: ks
3282 integer, intent(in) :: iter
3283
3284 integer :: ii
3285 character(len=50) :: aux
3286
3287 push_sub(td_write_q)
3288
3289 if (mpi_grp%is_root()) then
3290 if (iter == 0) then
3291 call td_write_print_header_init(out_q)
3292 call write_iter_header_start(out_q)
3293 do ii = 1, ks%pt%nmodes
3294 write(aux, '(a1,i3,a3)') 'q', ii, '(t)'
3295 call write_iter_header(out_q, aux)
3296 end do
3297 do ii = 1, ks%pt%nmodes
3298 write(aux, '(a1,i3,a3)') 'p', ii, '(t)'
3299 call write_iter_header(out_q, aux)
3300 end do
3301 do ii = 1, space%dim
3302 write(aux, '(a3,i3,a3)') 'f_pt', ii, '(t)'
3303 call write_iter_header(out_q, aux)
3304 end do
3305 call write_iter_nl(out_q)
3306 call td_write_print_header_end(out_q)
3307 end if
3308
3309 call write_iter_start(out_q)
3310 call write_iter_double(out_q, ks%pt_mx%pt_q, ks%pt%nmodes)
3311 call write_iter_double(out_q, ks%pt_mx%pt_p, ks%pt%nmodes)
3312 call write_iter_double(out_q, ks%pt_mx%fmf, space%dim)
3313 call write_iter_nl(out_q)
3314 end if
3315
3316 pop_sub(td_write_q)
3317 end subroutine td_write_q
3318
3319
3320 ! ---------------------------------------------------------
3321 subroutine td_write_mxll_field(out_mxll, mpi_grp, space, hm, dt, iter)
3322 type(c_ptr), intent(inout) :: out_mxll
3323 type(mpi_grp_t), intent(in) :: mpi_grp
3324 class(space_t), intent(in) :: space
3325 type(hamiltonian_elec_t),intent(in) :: hm
3326 real(real64), intent(in) :: dt
3327 integer, intent(in) :: iter
3328
3329 integer :: idir
3330 real(real64) :: field(space%dim)
3331 character(len=80) :: aux
3332 character(len=1) :: field_char
3333
3334 push_sub(td_write_mxll_field)
3335
3336 if (.not. mpi_grp%is_root()) then
3337 pop_sub(td_write_mxll_field)
3338 return ! only first node outputs
3339 end if
3340
3341 ! TODO: This is wrong if both are present
3342 ! Not clear how to solve this
3343 !A SSERT(hm%mxll%add_electric_dip .neqv. hm%mxll%add_magnetic_dip)
3344
3345 if (iter == 0) then
3346 call td_write_print_header_init(out_mxll)
3347
3348 write(aux, '(a7,e20.12,3a)') '# dt = ', units_from_atomic(units_out%time, dt), &
3349 " [", trim(units_abbrev(units_out%time)), "]"
3350 call write_iter_string(out_mxll, aux)
3351 call write_iter_nl(out_mxll)
3352
3353 call write_iter_header_start(out_mxll)
3354 select case (hm%mxll%coupling_mode)
3355 case (length_gauge_dipole, multipolar_expansion)
3356 if (hm%mxll%add_electric_dip) field_char = 'E'
3357 if (hm%mxll%add_magnetic_dip) field_char = 'B'
3358 do idir = 1, space%dim
3359 write(aux, '(a,i1,a)') field_char // '(', idir, ')'
3360 call write_iter_header(out_mxll, aux)
3361 end do
3362 case (velocity_gauge_dipole)
3363 do idir = 1, space%dim
3364 write(aux, '(a,i1,a)') 'A(', idir, ')'
3365 call write_iter_header(out_mxll, aux)
3366 end do
3367 end select
3368 call write_iter_nl(out_mxll)
3369
3370 call write_iter_string(out_mxll, '#[Iter n.]')
3371 call write_iter_header(out_mxll, '[' // trim(units_abbrev(units_out%time)) // ']')
3373 ! Note that we do not print out units of E, A or B, but rather units of e*E, e*A or e*B
3374 ! (force, energy and magnetic flux density, respectively).
3375 select case (hm%mxll%coupling_mode)
3376 case (length_gauge_dipole, multipolar_expansion)
3377 if (hm%mxll%add_electric_dip) aux = '[' // trim(units_abbrev(units_out%force)) // ']'
3378 if (hm%mxll%add_magnetic_dip) aux = '[' // trim(units_abbrev(unit_one/units_out%length**2)) // ']'
3379 do idir = 1, space%dim
3380 call write_iter_header(out_mxll, aux)
3381 end do
3382 case (velocity_gauge_dipole)
3383 aux = '[' // trim(units_abbrev(units_out%energy)) // ']'
3384 do idir = 1, space%dim
3385 call write_iter_header(out_mxll, aux)
3386 end do
3387 end select
3388 call write_iter_nl(out_mxll)
3389 call td_write_print_header_end(out_mxll)
3390 end if
3391
3392 call write_iter_start(out_mxll)
3393
3394 field = m_zero
3395 select case (hm%mxll%coupling_mode)
3396 case (length_gauge_dipole, multipolar_expansion)
3397 if (hm%mxll%add_electric_dip) field = units_from_atomic(units_out%force, hm%mxll%e_field_dip)
3398 if (hm%mxll%add_magnetic_dip) field = units_from_atomic(unit_one/units_out%length**2, hm%mxll%b_field_dip)
3399 call write_iter_double(out_mxll, field, space%dim)
3400 case (velocity_gauge_dipole)
3401 field = units_from_atomic(units_out%energy, hm%mxll%vec_pot_dip)
3402 call write_iter_double(out_mxll, field, space%dim)
3403 end select
3404 call write_iter_nl(out_mxll)
3405
3406 pop_sub(td_write_mxll_field)
3407 end subroutine td_write_mxll_field
3408
3409
3410 ! ---------------------------------------------------------
3411 subroutine td_write_effective_u(out_coords, mpi_grp, lda_u, iter)
3412 type(c_ptr), intent(inout) :: out_coords
3413 type(mpi_grp_t), intent(in) :: mpi_grp
3414 type(lda_u_t), intent(in) :: lda_u
3415 integer, intent(in) :: iter
3417 integer :: ios, inn
3418 character(len=50) :: aux
3419
3420 if (.not. mpi_grp%is_root()) return ! only first node outputs
3421
3422 push_sub(td_write_effective_u)
3423
3424 if (iter == 0) then
3425 call td_write_print_header_init(out_coords)
3426
3427 ! first line: column names
3428 call write_iter_header_start(out_coords)
3429
3430 do ios = 1, lda_u%norbsets
3431 write(aux, '(a2,i3,a1)') 'Ueff(', ios, ')'
3432 call write_iter_header(out_coords, aux)
3433 end do
3434
3435 do ios = 1, lda_u%norbsets
3436 write(aux, '(a2,i3,a1)') 'U(', ios, ')'
3437 call write_iter_header(out_coords, aux)
3438 end do
3439
3440 do ios = 1, lda_u%norbsets
3441 write(aux, '(a2,i3,a1)') 'J(', ios, ')'
3442 call write_iter_header(out_coords, aux)
3443 end do
3444
3445 if (lda_u%intersite) then
3446 do ios = 1, lda_u%norbsets
3447 do inn = 1, lda_u%orbsets(ios)%nneighbors
3448 write(aux, '(a2,i3,a1,i3,a1)') 'V(', ios,'-', inn, ')'
3449 call write_iter_header(out_coords, aux)
3450 end do
3451 end do
3452 end if
3453
3454
3455 call write_iter_nl(out_coords)
3456
3457 ! second line: units
3458 call write_iter_string(out_coords, '#[Iter n.]')
3459 call write_iter_header(out_coords, '[' // trim(units_abbrev(units_out%time)) // ']')
3460 call write_iter_string(out_coords, &
3461 'Effective U ' // trim(units_abbrev(units_out%energy)) // &
3462 ', U in '// trim(units_abbrev(units_out%energy)) // &
3463 ', J in ' // trim(units_abbrev(units_out%energy)))
3464 call write_iter_nl(out_coords)
3465
3466 call td_write_print_header_end(out_coords)
3467 end if
3468
3469 call write_iter_start(out_coords)
3470
3471 do ios = 1, lda_u%norbsets
3472 call write_iter_double(out_coords, units_from_atomic(units_out%energy, &
3473 lda_u%orbsets(ios)%Ueff), 1)
3474 end do
3475
3476 do ios = 1, lda_u%norbsets
3477 call write_iter_double(out_coords, units_from_atomic(units_out%energy, &
3478 lda_u%orbsets(ios)%Ubar), 1)
3479 end do
3480
3481 do ios = 1, lda_u%norbsets
3482 call write_iter_double(out_coords, units_from_atomic(units_out%energy, &
3483 lda_u%orbsets(ios)%Jbar), 1)
3484 end do
3485
3486 if (lda_u%intersite) then
3487 do ios = 1, lda_u%norbsets
3488 do inn = 1, lda_u%orbsets(ios)%nneighbors
3489 call write_iter_double(out_coords, units_from_atomic(units_out%energy, &
3490 lda_u%orbsets(ios)%V_ij(inn,0)), 1)
3491 end do
3492 end do
3493 end if
3494
3495 call write_iter_nl(out_coords)
3496
3497 pop_sub(td_write_effective_u)
3498 end subroutine td_write_effective_u
3499
3501 subroutine td_write_norm_ks_orbitals(file_handle, grid, kpoints, st, iter)
3502 type(c_ptr), intent(inout) :: file_handle
3503 type(grid_t), intent(in) :: grid
3504 type(kpoints_t), intent(in) :: kpoints
3505 type(states_elec_t), intent(in) :: st
3506 integer, intent(in) :: iter
3507
3508 integer :: ik_ispin, ist
3509 character(len=7) :: nkpt_str, nst_str
3510 character(len=7) :: ik_str, ist_str
3511 real(real64), allocatable :: norm_ks(:, :)
3512 real(real64) :: n_electrons
3513
3515
3516 safe_allocate(norm_ks(1:st%nst, 1:st%nik))
3517 call states_elec_calc_norms(grid, kpoints, st, norm_ks)
3518
3519 if (st%system_grp%is_root()) then
3520 ! Header
3521 if (iter == 0) then
3522 call td_write_print_header_init(file_handle)
3523
3524 ! Line 1
3525 write(nkpt_str, '(I7)') st%nik
3526 write(nst_str, '(I7)') st%nst
3527 call write_iter_string(file_handle, '# Dimensions. (nstates, nkpt * nspin):')
3528 call write_iter_string(file_handle, trim(adjustl(nst_str)) // ' ' // trim(adjustl(nkpt_str)))
3529 call write_iter_nl(file_handle)
3530
3531 ! Line 2
3532 call write_iter_string(file_handle, '# Norm ordering: (istate, ikpoint_spin)')
3533 call write_iter_nl(file_handle)
3534
3535 ! Line 3
3536 call write_iter_header_start(file_handle)
3537 call write_iter_header(file_handle, 'N_electrons')
3538 do ik_ispin = 1, st%nik
3539 do ist = 1, st%nst
3540 write(ik_str, '(I7)') ik_ispin
3541 write(ist_str, '(I7)') ist
3542 call write_iter_header(file_handle, &
3543 'Norm (' // trim(ist_str) // ',' // trim(ik_str) // ')')
3544 enddo
3545 enddo
3546 call write_iter_nl(file_handle)
3547 call td_write_print_header_end(file_handle)
3548 end if
3549
3550 n_electrons = sum(st%occ * norm_ks**2)
3551
3552 ! Output norms for time step `iter`
3553 call write_iter_start(file_handle)
3554 call write_iter_double(file_handle, n_electrons, 1)
3555 do ik_ispin = 1, st%nik
3556 call write_iter_double(file_handle, norm_ks(:, ik_ispin), size(norm_ks, 1))
3557 enddo
3558 call write_iter_nl(file_handle)
3559
3560 end if
3561
3562 safe_deallocate_a(norm_ks)
3563
3565
3566 end subroutine td_write_norm_ks_orbitals
3567
3568 ! ---------------------------------------------------------
3570 subroutine td_write_cell_parameters(file_handle, ions, iter)
3571 type(c_ptr), intent(inout) :: file_handle
3572 type(ions_t), intent(in) :: ions
3573 integer, intent(in) :: iter
3574
3575 integer :: idir
3576 real(real64) :: tmp(3)
3577
3578 if (.not. ions%grp%is_root()) return ! only first task outputs
3579
3580 push_sub(td_write_cell_parameters)
3581
3582 assert(ions%space%dim == 3)
3583
3584 if (iter == 0) then
3585 call td_write_print_header_init(file_handle)
3586
3587 ! first line: column names
3588 call write_iter_header_start(file_handle)
3589
3590 call write_iter_string(file_handle, '# Iter, a, b, c, volume, alpha, beta, gamma, ' &
3591 // 'a_x, a_y, a_z, b_x, b_y, b_z, c_x, c_y, c_z')
3592
3593 ! second line: units
3594 call write_iter_string(file_handle, '#[Iter n.]')
3595 call write_iter_header(file_handle, '[' // trim(units_abbrev(units_out%time)) // ']')
3596 call write_iter_string(file_handle, &
3597 'Lengths in ' // trim(units_abbrev(units_out%length)) // &
3598 ', Volume in ' // trim(units_abbrev(units_out%length**3)) // &
3599 ', Angles in degree, Lattice vectors in '// trim(units_abbrev(units_out%length)))
3600 call write_iter_nl(file_handle)
3601
3602 call td_write_print_header_end(file_handle)
3603 end if
3604
3605 call write_iter_start(file_handle)
3606
3607 ! Length of the lattice vectors
3608 do idir = 1, 3
3609 tmp(idir) = units_from_atomic(units_out%length, norm2(ions%latt%rlattice(1:3, idir)))
3610 end do
3611 call write_iter_double(file_handle, tmp, 3)
3612
3613 ! Cell volume
3614 tmp(1) = units_from_atomic(units_out%length**3, ions%latt%rcell_volume)
3615 call write_iter_double(file_handle, tmp(1), 1)
3616
3617 ! Lattice angles
3618 call write_iter_double(file_handle, ions%latt%alpha, 1)
3619 call write_iter_double(file_handle, ions%latt%beta, 1)
3620 call write_iter_double(file_handle, ions%latt%gamma, 1)
3621
3622 !Lattice vectors
3623 do idir = 1, 3
3624 tmp(1:3) = units_from_atomic(units_out%length, ions%latt%rlattice(:, idir))
3625 call write_iter_double(file_handle, tmp, 3)
3626 end do
3627 call write_iter_nl(file_handle)
3628
3630 end subroutine td_write_cell_parameters
3631
3632
3633 ! ---------------------------------------------------------
3634 subroutine td_write_mxll_init(writ, namespace, iter, dt, grp)
3635 type(td_write_t), intent(out) :: writ
3636 type(namespace_t), intent(in) :: namespace
3637 integer, intent(in) :: iter
3638 real(real64), intent(in) :: dt
3639 type(mpi_grp_t), intent(in) :: grp
3640
3641 integer :: default, flags, iout, first
3642
3643 push_sub(td_write_mxll_init)
3644
3645 !%Variable MaxwellTDOutput
3646 !%Type flag
3647 !%Default maxwell_energy
3648 !%Section Maxwell::Output
3649 !%Description
3650 !% Defines what should be output during the time-dependent
3651 !% Maxwell simulation. Many of the options can increase the computational
3652 !% cost of the simulation, so only use the ones that you need. In
3653 !% most cases the default value is enough, as it is adapted to the
3654 !% details of the TD run.
3655 !% WARNING: the calculation of the longitudinal or transverse E and B fields
3656 !% can be very expensive, so please consider using the MaxwellOutput block
3657 !% to calculate and output these quantities at certain timesteps.
3658 !%Option maxwell_total_e_field 1
3659 !% Output of the total (longitudinal plus transverse) electric field at
3660 !% the points specified in the MaxwellFieldsCoordinate block
3661 !%Option maxwell_total_b_field 8
3662 !% Output of the total (longitudinal plus transverse) magnetic field at
3663 !% the points specified in the MaxwellFieldsCoordinate block
3664 !%Option maxwell_longitudinal_e_field 64
3665 !% Output of the longitudinal electric field at the points
3666 !% specified in the MaxwellFieldsCoordinate block (can slow down the run)
3667 !%Option maxwell_longitudinal_b_field 512
3668 !% Output of the longitudinal magnetic field at the points
3669 !% specified in the MaxwellFieldsCoordinate block (can slow down the run)
3670 !%Option maxwell_transverse_e_field 4096
3671 !% Output of the transverse electric field at the points
3672 !% specified in the MaxwellFieldsCoordinate block (can slow down the run)
3673 !%Option maxwell_transverse_b_field 32768
3674 !% Output of the transverse magnetic field at the points
3675 !% specified in the MaxwellFieldsCoordinate block (can slow down the run)
3676 !%Option maxwell_energy 262144
3677 !% Output of the electromagnetic field energy into the folder <tt>td.general/maxwell</tt>.
3678 !% WARNING: the transverse and longitudinal energies will be correct only if you request
3679 !% the longitudinal and transverse E or B fields as output. Otherwise they will be set to
3680 !% zero.
3681 !%Option e_field_surface_x 524288
3682 !% Output of the E field sliced along the plane x=0 for each field component
3683 !%Option e_field_surface_y 1048576
3684 !% Output of the E field sliced along the plane y=0 for each field component
3685 !%Option e_field_surface_z 2097152
3686 !% Output of the E field sliced along the plane z=0 for each field component
3687 !%Option b_field_surface_x 4194304
3688 !% Output of the B field sliced along the plane x=0 for each field component
3689 !%Option b_field_surface_y 8388608
3690 !% Output of the B field sliced along the plane y=0 for each field component
3691 !%Option b_field_surface_z 16777216
3692 !% Output of the B field sliced along the plane z=0 for each field component
3693 !%End
3694
3695 default = 2**(out_maxwell_energy - 1)
3696 call parse_variable(namespace, 'MaxwellTDOutput', default, flags)
3697
3698 if (.not. varinfo_valid_option('MaxwellTDOutput', flags, is_flag = .true.)) then
3699 call messages_input_error(namespace, 'MaxwellTDOutput')
3700 end if
3701
3703 writ%out(iout)%write = (iand(flags, 2**(iout - 1)) /= 0)
3704 if (writ%out(iout)%write) then
3705 writ%out(iout + 1)%write = .true.
3706 writ%out(iout + 2)%write = .true.
3707 end if
3708 end do
3709
3711 writ%out(iout)%write = (iand(flags, 2**(iout - 1)) /= 0)
3712 end do
3713
3714 if (iter == 0) then
3715 first = 0
3716 else
3717 first = iter + 1
3718 end if
3719
3720 writ%out(:)%mpi_grp = grp
3721
3722 call io_mkdir('td.general', namespace)
3723
3724 ! total E field
3725 if (writ%out(out_maxwell_total_e_field)%write) then
3726 call write_iter_init(writ%out(out_maxwell_total_e_field)%handle, first, &
3727 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/total_e_field_x", namespace)))
3728 call write_iter_init(writ%out(out_maxwell_total_e_field + 1)%handle, first, &
3729 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/total_e_field_y", namespace)))
3730 call write_iter_init(writ%out(out_maxwell_total_e_field + 2)%handle, first, &
3731 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/total_e_field_z", namespace)))
3732 end if
3733
3734 ! total B field
3735 if (writ%out(out_maxwell_total_b_field)%write) then
3736 call write_iter_init(writ%out(out_maxwell_total_b_field)%handle, first, &
3737 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/total_b_field_x", namespace)))
3738 call write_iter_init(writ%out(out_maxwell_total_b_field + 1)%handle, first, &
3739 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/total_b_field_y", namespace)))
3740 call write_iter_init(writ%out(out_maxwell_total_b_field + 2)%handle, first, &
3741 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/total_b_field_z", namespace)))
3742 end if
3743
3744 ! longitudinal E field
3745 if (writ%out(out_maxwell_long_e_field)%write) then
3746 call write_iter_init(writ%out(out_maxwell_long_e_field)%handle, first, &
3747 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/longitudinal_e_field_x", namespace)))
3748 call write_iter_init(writ%out(out_maxwell_long_e_field + 1)%handle, first, &
3749 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/longitudinal_e_field_y", namespace)))
3750 call write_iter_init(writ%out(out_maxwell_long_e_field + 2)%handle, first, &
3751 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/longitudinal_e_field_z", namespace)))
3752 end if
3753
3754 ! longitudinal B field
3755 if (writ%out(out_maxwell_long_b_field)%write) then
3756 call write_iter_init(writ%out(out_maxwell_long_b_field)%handle, first, &
3757 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/longitudinal_b_field_x", namespace)))
3758 call write_iter_init(writ%out(out_maxwell_long_b_field + 1)%handle, first, &
3759 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/longitudinal_b_field_y", namespace)))
3760 call write_iter_init(writ%out(out_maxwell_long_b_field + 2)%handle, first, &
3761 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/longitudinal_b_field_z", namespace)))
3762 end if
3763
3764 ! transverse E field
3765 if (writ%out(out_maxwell_trans_e_field)%write) then
3766 call write_iter_init(writ%out(out_maxwell_trans_e_field)%handle, first, &
3767 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/transverse_e_field_x", namespace)))
3768 call write_iter_init(writ%out(out_maxwell_trans_e_field + 1)%handle, first, &
3769 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/transverse_e_field_y", namespace)))
3770 call write_iter_init(writ%out(out_maxwell_trans_e_field + 2)%handle, first, &
3771 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/transverse_e_field_z", namespace)))
3772 end if
3773
3774 ! transverse B field
3775 if (writ%out(out_maxwell_trans_b_field)%write) then
3776 call write_iter_init(writ%out(out_maxwell_trans_b_field)%handle, first, &
3777 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/transverse_b_field_x", namespace)))
3778 call write_iter_init(writ%out(out_maxwell_trans_b_field + 1)%handle, first, &
3779 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/transverse_b_field_y", namespace)))
3780 call write_iter_init(writ%out(out_maxwell_trans_b_field + 2)%handle, first, &
3781 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/transverse_b_field_z", namespace)))
3782 end if
3783
3784 ! Maxwell energy
3785 if (writ%out(out_maxwell_energy)%write) then
3786 call write_iter_init(writ%out(out_maxwell_energy)%handle, first, &
3787 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/maxwell_energy", namespace)))
3788 end if
3789
3790 if (writ%out(out_e_field_surface_x)%write) then
3791 call write_iter_init(writ%out(out_e_field_surface_x)%handle, first, &
3792 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/electric_field_surface-x", namespace)))
3793 end if
3794
3795 if (writ%out(out_e_field_surface_y)%write) then
3796 call write_iter_init(writ%out(out_e_field_surface_y)%handle, first, &
3797 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/electric_field_surface-y", namespace)))
3798 end if
3799
3800 if (writ%out(out_e_field_surface_z)%write) then
3801 call write_iter_init(writ%out(out_e_field_surface_z)%handle, first, &
3802 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/electric_field_surface-z", namespace)))
3803 end if
3804
3805 if (writ%out(out_b_field_surface_x)%write) then
3806 call write_iter_init(writ%out(out_b_field_surface_x)%handle, first, &
3807 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/magnetic_field_surface-x", namespace)))
3808 end if
3809
3810 if (writ%out(out_b_field_surface_y)%write) then
3811 call write_iter_init(writ%out(out_b_field_surface_y)%handle, first, &
3812 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/magnetic_field_surface-y", namespace)))
3813 end if
3814
3815 if (writ%out(out_b_field_surface_z)%write) then
3816 call write_iter_init(writ%out(out_b_field_surface_z)%handle, first, &
3817 units_from_atomic(units_out%time, dt), trim(io_workpath("td.general/magnetic_field_surface-z", namespace)))
3818 end if
3819
3820 pop_sub(td_write_mxll_init)
3821 end subroutine td_write_mxll_init
3822
3823
3824 ! ---------------------------------------------------------
3825 subroutine td_write_mxll_end(writ)
3826 type(td_write_t), intent(inout) :: writ
3827
3828 integer :: iout
3829
3830 push_sub(td_write_mxll_end)
3831
3832 do iout = 1, out_maxwell_max
3833 if (writ%out(iout)%write) call write_iter_end(writ%out(iout)%handle)
3834 end do
3835
3836 pop_sub(td_write_mxll_end)
3837 end subroutine td_write_mxll_end
3838
3839
3840 ! ---------------------------------------------------------
3841 subroutine td_write_mxll_iter(writ, space, gr, st, hm, helmholtz, dt, iter, namespace)
3842 type(td_write_t), intent(inout) :: writ
3843 class(space_t), intent(in) :: space
3844 type(grid_t), intent(inout) :: gr
3845 type(states_mxll_t), intent(inout) :: st
3846 type(hamiltonian_mxll_t), intent(inout) :: hm
3847 type(helmholtz_decomposition_t), intent(inout) :: helmholtz
3848 real(real64), intent(in) :: dt
3849 integer, intent(in) :: iter
3850 type(namespace_t), intent(in) :: namespace
3851
3852
3853 push_sub(td_write_mxll_iter)
3854
3855 call profiling_in("TD_WRITE_ITER_MAXWELL")
3856
3857 if (writ%out(out_maxwell_trans_e_field)%write .or. writ%out(out_maxwell_trans_b_field)%write) then
3858 call helmholtz%get_trans_field(namespace, st%rs_state_trans, total_field=st%rs_state)
3859 call get_rs_state_at_point(st%selected_points_rs_state_trans(:,:), st%rs_state_trans, &
3860 st%selected_points_coordinate(:,:), st, gr)
3861 !TODO: calculate transverse energy
3862 else
3863 hm%energy%energy_trans = m_zero
3864 end if
3865
3866 if (writ%out(out_maxwell_long_e_field)%write .or. writ%out(out_maxwell_long_b_field)%write) then
3867 call helmholtz%get_long_field(namespace, st%rs_state_long, total_field=st%rs_state)
3868 call get_rs_state_at_point(st%selected_points_rs_state_long(:,:), st%rs_state_long, &
3869 st%selected_points_coordinate(:,:), st, gr)
3870 !TODO: calculate longitudinal energy
3871 else
3872 hm%energy%energy_long = m_zero
3873 end if
3874
3875 ! total E field
3876 if (writ%out(out_maxwell_total_e_field)%write) then
3877 call td_write_fields(writ%out(out_maxwell_total_e_field)%handle, space, st, iter, dt, &
3879 call td_write_fields(writ%out(out_maxwell_total_e_field + 1)%handle, space, st, iter, dt, &
3881 call td_write_fields(writ%out(out_maxwell_total_e_field + 2)%handle, space, st, iter, dt, &
3883 end if
3884
3885 ! total B field
3886 if (writ%out(out_maxwell_total_b_field)%write) then
3887 call td_write_fields(writ%out(out_maxwell_total_b_field)%handle, space, st, iter, dt, &
3889 call td_write_fields(writ%out(out_maxwell_total_b_field + 1)%handle, space, st, iter, dt, &
3891 call td_write_fields(writ%out(out_maxwell_total_b_field + 2)%handle, space, st, iter, dt, &
3893 end if
3894
3895 ! Longitudinal E field
3896 if (writ%out(out_maxwell_long_e_field)%write) then
3897 call td_write_fields(writ%out(out_maxwell_long_e_field)%handle, space, st, iter, dt, &
3899 call td_write_fields(writ%out(out_maxwell_long_e_field + 1)%handle, space, st, iter, dt, &
3901 call td_write_fields(writ%out(out_maxwell_long_e_field + 2)%handle, space, st, iter, dt, &
3903 end if
3904
3905 ! Longitudinal B field
3906 if (writ%out(out_maxwell_long_b_field)%write) then
3907 call td_write_fields(writ%out(out_maxwell_long_b_field)%handle, space, st, iter, dt, &
3909 call td_write_fields(writ%out(out_maxwell_long_b_field + 1)%handle, space, st, iter, dt, &
3911 call td_write_fields(writ%out(out_maxwell_long_b_field + 2)%handle, space, st, iter, dt, &
3913 end if
3914
3915 ! Transverse E field
3916 if (writ%out(out_maxwell_trans_e_field)%write) then
3917 call td_write_fields(writ%out(out_maxwell_trans_e_field)%handle, space, st, iter, dt, &
3919 call td_write_fields(writ%out(out_maxwell_trans_e_field + 1)%handle, space, st, iter, dt, &
3921 call td_write_fields(writ%out(out_maxwell_trans_e_field + 2)%handle, space, st, iter, dt, &
3923 end if
3924
3925 ! Transverse B field
3926 if (writ%out(out_maxwell_trans_b_field)%write) then
3927 call td_write_fields(writ%out(out_maxwell_trans_b_field)%handle, space, st, iter, dt, &
3929 call td_write_fields(writ%out(out_maxwell_trans_b_field + 1)%handle, space, st, iter, dt, &
3931 call td_write_fields(writ%out(out_maxwell_trans_b_field + 2)%handle, space, st, iter, dt, &
3933 end if
3934
3935 ! Maxwell energy
3936 if (writ%out(out_maxwell_energy)%write) then
3937 call td_write_maxwell_energy(writ%out(out_maxwell_energy)%handle, &
3938 writ%out(out_maxwell_energy)%mpi_grp, hm, iter)
3939 end if
3940
3941 if (writ%out(out_e_field_surface_x)%write) then
3942 call td_write_electric_field_box_surface(writ%out(out_e_field_surface_x)%handle, st, 1, iter)
3943 end if
3944
3945 if (writ%out(out_e_field_surface_y)%write) then
3946 call td_write_electric_field_box_surface(writ%out(out_e_field_surface_y)%handle, st, 2, iter)
3947 end if
3948
3949 if (writ%out(out_e_field_surface_z)%write) then
3950 call td_write_electric_field_box_surface(writ%out(out_e_field_surface_z)%handle, st, 3, iter)
3951 end if
3952
3953 if (writ%out(out_b_field_surface_x)%write) then
3954 call td_write_magnetic_field_box_surface(writ%out(out_b_field_surface_x)%handle, st, 1, iter)
3955 end if
3956
3957 if (writ%out(out_b_field_surface_y)%write) then
3958 call td_write_magnetic_field_box_surface(writ%out(out_b_field_surface_y)%handle, st, 2, iter)
3959 end if
3960
3961 if (writ%out(out_b_field_surface_z)%write) then
3962 call td_write_magnetic_field_box_surface(writ%out(out_b_field_surface_z)%handle, st, 3, iter)
3963 end if
3964
3965 call profiling_out("TD_WRITE_ITER_MAXWELL")
3966
3967 pop_sub(td_write_mxll_iter)
3968 end subroutine td_write_mxll_iter
3969
3970
3971 ! ---------------------------------------------------------
3972 subroutine td_write_maxwell_energy(out_maxwell_energy, mpi_grp, hm, iter)
3973 type(c_ptr), intent(inout) :: out_maxwell_energy
3974 type(mpi_grp_t), intent(in) :: mpi_grp
3975 type(hamiltonian_mxll_t), intent(in) :: hm
3976 integer, intent(in) :: iter
3977
3978 integer :: ii
3979
3980 integer :: n_columns
3981
3982 if (.not. mpi_grp%is_root()) return ! only first node outputs
3983
3984 push_sub(td_write_maxwell_energy)
3985
3986 n_columns = 8
3987
3988 if (iter == 0) then
3989 call td_write_print_header_init(out_maxwell_energy)
3990
3991 ! first line -> column names
3992 call write_iter_header_start(out_maxwell_energy)
3993 call write_iter_header(out_maxwell_energy, 'Total')
3994 call write_iter_header(out_maxwell_energy, 'E**2')
3995 call write_iter_header(out_maxwell_energy, 'B**2')
3996 call write_iter_header(out_maxwell_energy, 'Total+Boundaries')
3997 call write_iter_header(out_maxwell_energy, 'Boundaries')
3998 call write_iter_header(out_maxwell_energy, 'Transversal')
3999 call write_iter_header(out_maxwell_energy, 'Longitudinal')
4000 call write_iter_header(out_maxwell_energy, 'Incident Waves')
4001
4002 call write_iter_nl(out_maxwell_energy)
4003
4004 ! units
4005
4006 call write_iter_string(out_maxwell_energy, '#[Iter n.]')
4007 call write_iter_header(out_maxwell_energy, '[' // trim(units_abbrev(units_out%time)) // ']')
4008
4009 do ii = 1, n_columns
4010 call write_iter_header(out_maxwell_energy, '[' // trim(units_abbrev(units_out%energy)) // ']')
4011 end do
4012 call write_iter_nl(out_maxwell_energy)
4013
4014 call td_write_print_header_end(out_maxwell_energy)
4015 end if
4016
4017 call write_iter_start(out_maxwell_energy)
4018 call write_iter_double(out_maxwell_energy, units_from_atomic(units_out%energy, hm%energy%energy), 1)
4019 call write_iter_double(out_maxwell_energy, units_from_atomic(units_out%energy, hm%energy%e_energy), 1)
4020 call write_iter_double(out_maxwell_energy, units_from_atomic(units_out%energy, hm%energy%b_energy), 1)
4021 call write_iter_double(out_maxwell_energy, units_from_atomic(units_out%energy, &
4022 hm%energy%energy+hm%energy%boundaries), 1)
4023 call write_iter_double(out_maxwell_energy, units_from_atomic(units_out%energy, hm%energy%boundaries), 1)
4024 call write_iter_double(out_maxwell_energy, units_from_atomic(units_out%energy, hm%energy%energy_trans), 1)
4025 call write_iter_double(out_maxwell_energy, units_from_atomic(units_out%energy, hm%energy%energy_long), 1)
4026 call write_iter_double(out_maxwell_energy, units_from_atomic(units_out%energy, hm%energy%energy_plane_waves), 1)
4027 call write_iter_nl(out_maxwell_energy)
4028
4030 end subroutine td_write_maxwell_energy
4031
4032
4033 ! ---------------------------------------------------------
4034 subroutine td_write_electric_field_box_surface(out_field_surf, st, dim, iter)
4035 type(c_ptr), intent(inout) :: out_field_surf
4036 type(states_mxll_t), intent(in) :: st
4037 integer, intent(in) :: dim
4038 integer, intent(in) :: iter
4039
4040 integer :: ii
4041
4042 integer :: n_columns
4043
4044 if (.not. st%system_grp%is_root()) return ! only first node outputs
4045
4047
4048 n_columns = 12
4049
4050 if (iter == 0) then
4051 call td_write_print_header_init(out_field_surf)
4052
4053 ! first line -> column names
4054 call write_iter_header_start(out_field_surf)
4055 call write_iter_header(out_field_surf, '- x direction')
4056 call write_iter_header(out_field_surf, '+ x direction')
4057 call write_iter_header(out_field_surf, '- y direction')
4058 call write_iter_header(out_field_surf, '+ y direction')
4059 call write_iter_header(out_field_surf, '- z direction')
4060 call write_iter_header(out_field_surf, '+ z direction')
4061 call write_iter_header(out_field_surf, '- x dir. p. w.')
4062 call write_iter_header(out_field_surf, '+ x dir. p. w.')
4063 call write_iter_header(out_field_surf, '- y dir. p. w.')
4064 call write_iter_header(out_field_surf, '+ y dir. p. w.')
4065 call write_iter_header(out_field_surf, '- z dir. p. w.')
4066 call write_iter_header(out_field_surf, '+ z dir. p. w.')
4068 call write_iter_nl(out_field_surf)
4069
4070 ! units
4071 call write_iter_string(out_field_surf, '#[Iter n.]')
4072 call write_iter_header(out_field_surf, '[' // trim(units_abbrev(units_out%time)) // ']')
4073
4074 do ii = 1, n_columns
4075 call write_iter_header(out_field_surf, '[' // trim(units_abbrev(units_out%energy/units_out%length)) // ']')
4076 end do
4077 call write_iter_nl(out_field_surf)
4078
4079 call td_write_print_header_end(out_field_surf)
4080 end if
4081
4082 call write_iter_start(out_field_surf)
4083 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4084 st%electric_field_box_surface(1,1,dim)), 1)
4085 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4086 st%electric_field_box_surface(2,1,dim)), 1)
4087 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4088 st%electric_field_box_surface(1,2,dim)), 1)
4089 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4090 st%electric_field_box_surface(2,2,dim)), 1)
4091 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4092 st%electric_field_box_surface(1,3,dim)), 1)
4093 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4094 st%electric_field_box_surface(2,3,dim)), 1)
4095 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4096 st%electric_field_box_surface_plane_waves(1,1,dim)), 1)
4097 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4098 st%electric_field_box_surface_plane_waves(2,1,dim)), 1)
4099 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4100 st%electric_field_box_surface_plane_waves(1,2,dim)), 1)
4101 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4102 st%electric_field_box_surface_plane_waves(2,2,dim)), 1)
4103 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4104 st%electric_field_box_surface_plane_waves(1,3,dim)), 1)
4105 call write_iter_double(out_field_surf, units_from_atomic(units_out%energy/units_out%length, &
4106 st%electric_field_box_surface_plane_waves(2,3,dim)), 1)
4107 call write_iter_nl(out_field_surf)
4108
4111
4112
4113 ! ---------------------------------------------------------
4114 subroutine td_write_magnetic_field_box_surface(out_field_surf, st, dim, iter)
4115 type(c_ptr), intent(inout) :: out_field_surf
4116 type(states_mxll_t), intent(in) :: st
4117 integer, intent(in) :: dim
4118 integer, intent(in) :: iter
4119
4120 integer :: ii
4121
4122 integer :: n_columns
4123
4124 if (.not. st%system_grp%is_root()) return ! only first node outputs
4125
4127
4128 n_columns = 12
4130 if (iter == 0) then
4131 call td_write_print_header_init(out_field_surf)
4132
4133 ! first line -> column names
4134 call write_iter_header_start(out_field_surf)
4135 call write_iter_header(out_field_surf, '- x direction')
4136 call write_iter_header(out_field_surf, '+ x direction')
4137 call write_iter_header(out_field_surf, '- y direction')
4138 call write_iter_header(out_field_surf, '+ y direction')
4139 call write_iter_header(out_field_surf, '- z direction')
4140 call write_iter_header(out_field_surf, '+ z direction')
4141 call write_iter_header(out_field_surf, '- x dir. p. w.')
4142 call write_iter_header(out_field_surf, '+ x dir. p. w.')
4143 call write_iter_header(out_field_surf, '- y dir. p. w.')
4144 call write_iter_header(out_field_surf, '+ y dir. p. w.')
4145 call write_iter_header(out_field_surf, '- z dir. p. w.')
4146 call write_iter_header(out_field_surf, '+ z dir. p. w.')
4147
4148 call write_iter_nl(out_field_surf)
4149
4150 ! units
4151 call write_iter_string(out_field_surf, '#[Iter n.]')
4152 call write_iter_header(out_field_surf, '[' // trim(units_abbrev(units_out%time)) // ']')
4153
4154 do ii = 1, n_columns
4155 call write_iter_header(out_field_surf, '[' // trim(units_abbrev(unit_one/units_out%length**2)) // ']')
4156 end do
4157 call write_iter_nl(out_field_surf)
4158
4159 call td_write_print_header_end(out_field_surf)
4160 end if
4161
4162 call write_iter_start(out_field_surf)
4163 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4164 st%magnetic_field_box_surface(1,1,dim)), 1)
4165 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4166 st%magnetic_field_box_surface(2,1,dim)), 1)
4167 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4168 st%magnetic_field_box_surface(1,2,dim)), 1)
4169 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4170 st%magnetic_field_box_surface(2,2,dim)), 1)
4171 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4172 st%magnetic_field_box_surface(1,3,dim)), 1)
4173 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4174 st%magnetic_field_box_surface(2,3,dim)), 1)
4175 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4176 st%magnetic_field_box_surface_plane_waves(1,1,dim)), 1)
4177 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4178 st%magnetic_field_box_surface_plane_waves(2,1,dim)), 1)
4179 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4180 st%magnetic_field_box_surface_plane_waves(1,2,dim)), 1)
4181 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4182 st%magnetic_field_box_surface_plane_waves(2,2,dim)), 1)
4183 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4184 st%magnetic_field_box_surface_plane_waves(1,3,dim)), 1)
4185 call write_iter_double(out_field_surf, units_from_atomic(unit_one/units_out%length**2, &
4186 st%magnetic_field_box_surface_plane_waves(2,3,dim)), 1)
4187 call write_iter_nl(out_field_surf)
4188
4191
4192 ! ---------------------------------------------------------
4193 subroutine td_write_fields(out_fields, space, st, iter, dt, e_or_b_field, field_type, idir)
4194 type(c_ptr), intent(inout) :: out_fields
4195 class(space_t), intent(in) :: space
4196 type(states_mxll_t), intent(in) :: st
4197 integer, intent(in) :: iter
4198 real(real64), intent(in) :: dt
4199 integer, intent(in) :: e_or_b_field
4200 integer, intent(in) :: field_type
4201 integer, intent(in) :: idir
4202
4203
4204 integer :: id
4205 real(real64) :: field(space%dim), selected_field
4206 character(len=80) :: aux
4207
4208 if (.not. st%system_grp%is_root()) return ! only first node outputs
4210 push_sub(td_write_fields)
4211
4212 if (iter == 0) then
4213 call td_write_print_header_init(out_fields)
4214
4215 ! first line
4216 write(aux, '(a7,e20.12,3a)') '# dt = ', units_from_atomic(units_out%time, dt), &
4217 " [", trim(units_abbrev(units_out%time)), "]"
4218 call write_iter_string(out_fields, aux)
4219 call write_iter_nl(out_fields)
4220
4221 call write_iter_header_start(out_fields)
4222
4223 do id = 1, st%selected_points_number
4224 select case (e_or_b_field)
4225 case (maxwell_e_field)
4226 write(aux, '(a,i1,a)') 'E(', id, ')'
4227 case (maxwell_b_field)
4228 write(aux, '(a,i1,a)') 'B(', id, ')'
4229 end select
4230 call write_iter_header(out_fields, aux)
4231 end do
4232
4233 call write_iter_nl(out_fields)
4234 call write_iter_string(out_fields, '#[Iter n.]')
4235 call write_iter_header(out_fields, ' [' // trim(units_abbrev(units_out%time)) // ']')
4236
4237 ! Note that we do not print out units of E, B, or A, but rather units of e*E, e*B, e*A.
4238 ! (force, force, and energy, respectively). The reason is that the units of E, B or A
4239 ! are ugly.
4240 aux = ' [' // trim(units_abbrev(units_out%force)) // ']'
4241 do id = 1, st%selected_points_number
4242 call write_iter_header(out_fields, aux)
4243 end do
4244 call write_iter_nl(out_fields)
4245 call td_write_print_header_end(out_fields)
4246 end if
4247
4248 call write_iter_start(out_fields)
4249
4250 do id = 1, st%selected_points_number
4251 select case (e_or_b_field)
4252 case (maxwell_e_field)
4253 ! Output of electric field at selected point
4254 select case (field_type)
4255 case (maxwell_total_field)
4256 call get_electric_field_vector(st%selected_points_rs_state(:,id), field(1:st%dim))
4257 case (maxwell_long_field)
4258 call get_electric_field_vector(st%selected_points_rs_state_long(:,id), field(1:st%dim))
4259 case (maxwell_trans_field)
4260 call get_electric_field_vector(st%selected_points_rs_state_trans(:,id), field(1:st%dim))
4261 end select
4262 selected_field = units_from_atomic(units_out%energy/units_out%length, field(idir))
4263 case (maxwell_b_field)
4264 ! Output of magnetic field at selected point
4265 select case (field_type)
4266 case (maxwell_total_field)
4267 call get_magnetic_field_vector(st%selected_points_rs_state(:,id), st%rs_sign, field(1:st%dim))
4268 case (maxwell_long_field)
4269 call get_magnetic_field_vector(st%selected_points_rs_state_long(:,id), st%rs_sign, field(1:st%dim))
4270 case (maxwell_trans_field)
4271 call get_magnetic_field_vector(st%selected_points_rs_state_trans(:,id), st%rs_sign, field(1:st%dim))
4272 end select
4273 selected_field = units_from_atomic(unit_one/units_out%length**2, field(idir))
4274 end select
4275 call write_iter_double(out_fields, selected_field, 1)
4276 end do
4277
4278 call write_iter_nl(out_fields)
4279
4280 pop_sub(td_write_fields)
4281 end subroutine td_write_fields
4282
4283
4284 !----------------------------------------------------------
4285 subroutine td_write_mxll_free_data(namespace, space, gr, st, hm, helmholtz, outp, iter, time)
4286 type(namespace_t), intent(in) :: namespace
4287 class(space_t), intent(in) :: space
4288 type(grid_t), intent(inout) :: gr
4289 type(states_mxll_t), intent(inout) :: st
4290 type(hamiltonian_mxll_t), intent(inout) :: hm
4291 type(helmholtz_decomposition_t), intent(inout) :: helmholtz
4292 type(output_t), intent(in) :: outp
4293 integer, intent(in) :: iter
4294 real(real64), intent(in) :: time
4295
4296 character(len=256) :: filename
4297
4298 push_sub(td_write_mxwll_free_data)
4299 call profiling_in("TD_WRITE_MAXWELL_DATA")
4300
4301 ! now write down the rest
4302 write(filename, '(a,a,i7.7)') trim(outp%iter_dir),"td.", iter ! name of directory
4303
4304 call output_mxll(outp, namespace, space, gr, st, hm, helmholtz, time, filename)
4305
4306 call profiling_out("TD_WRITE_MAXWELL_DATA")
4307 pop_sub(td_write_mxwll_free_data)
4308 end subroutine td_write_mxll_free_data
4309
4310 ! ---------------------------------------------------------
4311 subroutine td_write_dm_proj_basis(out_dm_proj_basis, dmp_st, iter)
4312 type(c_ptr), intent(inout) :: out_dm_proj_basis
4313 type(states_elec_t), intent(in) :: dmp_st
4314 integer, intent(in) :: iter
4315
4316 character(len=80) :: aux
4317 integer :: ik
4318
4319 push_sub(td_write_dm_proj_basis)
4320
4321 if (iter == 0) then
4322 call td_write_print_header_init(out_dm_proj_basis)
4323
4324 write(aux, '(a15,i8)') "# nspin ", dmp_st%d%nspin
4325 call write_iter_string(out_dm_proj_basis, aux)
4326 call write_iter_nl(out_dm_proj_basis)
4327
4328 write(aux, '(a15,i8)') "# nik ", dmp_st%nik
4329 call write_iter_string(out_dm_proj_basis, aux)
4330 call write_iter_nl(out_dm_proj_basis)
4331
4332 write(aux, '(a15,2i8)') "# st ", 1, dmp_st%nst
4333 call write_iter_string(out_dm_proj_basis, aux)
4334 call write_iter_nl(out_dm_proj_basis)
4335
4336 write(aux, '(a15)') "# w(ik) "
4337 call write_iter_string(out_dm_proj_basis, aux)
4338 do ik = 1, dmp_st%nik
4339 call write_iter_double(out_dm_proj_basis, dmp_st%kweights(ik), 1)
4340 end do
4341 call write_iter_nl(out_dm_proj_basis)
4342
4343 call td_write_print_header_end(out_dm_proj_basis)
4344 else
4345 call write_iter_string(out_dm_proj_basis, "# ------------")
4346 call write_iter_start(out_dm_proj_basis)
4347 call write_iter_double(out_dm_proj_basis, dmp_st%qtot, 1)
4348 call write_iter_nl(out_dm_proj_basis)
4349 do ik = 1, dmp_st%nik
4350 call write_iter_double(out_dm_proj_basis, dmp_st%eigenval(:, ik), dmp_st%nst)
4351 call write_iter_nl(out_dm_proj_basis)
4352 call write_iter_double(out_dm_proj_basis, dmp_st%occ(:, ik), dmp_st%nst)
4353 call write_iter_nl(out_dm_proj_basis)
4354 end do
4355 end if
4356
4357 pop_sub(td_write_dm_proj_basis)
4358 end subroutine td_write_dm_proj_basis
4359
4360end module td_write_oct_m
4361
4362!! Local Variables:
4363!! mode: f90
4364!! coding: utf-8
4365!! End:
ssize_t ssize_t write(int __fd, const void *__buf, size_t __n) __attribute__((__access__(__read_only__
constant times a vector plus a vector
Definition: lalg_basic.F90:173
Copies a vector x, to a vector y.
Definition: lalg_basic.F90:188
Sets the iteration number to the C object.
Definition: write_iter.F90:170
Writes to the corresponding file and adds one to the iteration. Must be called after write_iter_init(...
Definition: write_iter.F90:163
double exp(double __x) __attribute__((__nothrow__
This module contains interfaces for BLAS routines You should not use these routines directly....
Definition: blas.F90:120
This module implements a calculator for the density and defines related functions.
Definition: density.F90:122
subroutine, public density_calc(st, gr, density, istin)
Computes the density from the orbitals in st.
Definition: density.F90:653
This module calculates the derivatives (gradients, Laplacians, etc.) of a function.
integer, parameter, public spinors
integer, parameter, public spin_polarized
subroutine, public excited_states_kill(excited_state)
Kills an excited_state structure.
subroutine, public excited_states_init(excited_state, ground_state, filename, namespace)
Fills in an excited_state structure, by reading a file called "filename". This file describes the "pr...
type(gauge_field_t) function, pointer, public list_get_gauge_field(partners)
logical function, public list_has_lasers(partners)
type(lasers_t) function, pointer, public list_get_lasers(partners)
subroutine, public gauge_field_output_write(this, out_gauge, iter)
real(real64), parameter, public m_two
Definition: global.F90:202
real(real64), parameter, public m_zero
Definition: global.F90:200
complex(real64), parameter, public m_z0
Definition: global.F90:210
real(real64), parameter, public lmm_r_single_atom
Default local magnetic moments sphere radius for an isolated system.
Definition: global.F90:234
complex(real64), parameter, public m_zi
Definition: global.F90:214
integer, parameter, public max_output_types
Definition: global.F90:160
real(real64), parameter, public m_half
Definition: global.F90:206
real(real64), parameter, public m_one
Definition: global.F90:201
real(real64), parameter, public m_min_occ
Minimal occupation that is considered to be non-zero.
Definition: global.F90:227
This module implements the underlying real-space grid.
Definition: grid.F90:119
The Helmholtz decomposition is intended to contain "only mathematical" functions and procedures to co...
This module defines classes and functions for interaction partners.
subroutine, public zio_function_output(how, dir, fname, namespace, space, mesh, ff, unit, ierr, pos, atoms, grp, root)
Top-level IO routine for functions defined on the mesh.
subroutine, public io_function_read_what_how_when(namespace, space, what, how, output_interval, what_tag_in, how_tag_in, output_interval_tag_in, ignore_error)
Definition: io.F90:116
subroutine, public io_close(iunit, grp)
Definition: io.F90:467
character(len=max_path_len) function, public io_workpath(path, namespace)
construct path name from given name and namespace
Definition: io.F90:318
subroutine, public io_rm(fname, namespace)
Definition: io.F90:392
subroutine, public io_mkdir(fname, namespace, parents)
Definition: io.F90:361
integer function, public io_open(file, namespace, action, status, form, position, die, recl, grp)
Definition: io.F90:402
real(real64) function, public ion_dynamics_temperature(ions)
This function returns the ionic temperature in energy units.
integer, parameter, public qkickmode_cos
Definition: kick.F90:171
integer, parameter, public qkickmode_none
Definition: kick.F90:171
integer, parameter, public qkickmode_sin
Definition: kick.F90:171
subroutine, public kick_function_get(space, mesh, kick, kick_function, iq, to_interpolate)
Definition: kick.F90:994
subroutine, public kick_write(kick, iunit, out)
Definition: kick.F90:892
integer, parameter, public qkickmode_bessel
Definition: kick.F90:171
subroutine, public lasers_nondipole_laser_field_step(this, field, time)
Retrieves the NDSFA vector_potential correction. The nondipole field is obtained for consecutive time...
Definition: lasers.F90:1156
subroutine, public lasers_set_nondipole_parameters(this, ndfield, nd_integration_time)
Set parameters for nondipole SFA calculation.
Definition: lasers.F90:756
logical function, public lasers_with_nondipole_field(lasers)
Check if a nondipole SFA correction should be computed for the given laser.
Definition: lasers.F90:743
integer, parameter, public e_field_electric
Definition: lasers.F90:179
integer, parameter, public e_field_vector_potential
Definition: lasers.F90:179
integer, parameter, public e_field_scalar_potential
Definition: lasers.F90:179
integer pure elemental function, public laser_kind(laser)
Definition: lasers.F90:719
subroutine, public laser_field(laser, field, time)
Retrieves the value of either the electric or the magnetic field. If the laser is given by a scalar p...
Definition: lasers.F90:1121
integer, parameter, public e_field_magnetic
Definition: lasers.F90:179
integer, parameter, public dft_u_none
Definition: lda_u.F90:205
integer, parameter, public dft_u_acbn0
Definition: lda_u.F90:205
subroutine, public magnetic_local_moments(mesh, st, ions, boundaries, rho, rr, lmm)
Definition: magnetic.F90:289
subroutine, public magnetic_moment(mesh, st, rho, mm)
Definition: magnetic.F90:191
subroutine, public magnetic_total_magnetization(mesh, st, qq, trans_mag)
Definition: magnetic.F90:474
This module is intended to contain "only mathematical" functions and procedures.
Definition: math.F90:117
subroutine, public ylmr_real(xx, li, mi, ylm)
This is a Numerical Recipes-based subroutine computes real spherical harmonics ylm at position (x,...
Definition: math.F90:385
This module defines functions over batches of mesh functions.
Definition: mesh_batch.F90:118
This module defines various routines, operating on mesh functions.
subroutine, public dmf_multipoles(mesh, ff, lmax, multipole, mask)
This routine calculates the multipoles of a function ff.
This module defines the meshes, which are used in Octopus.
Definition: mesh.F90:120
subroutine, public messages_not_implemented(feature, namespace)
Definition: messages.F90:1068
subroutine, public messages_warning(no_lines, all_nodes, namespace)
Definition: messages.F90:525
subroutine, public messages_obsolete_variable(namespace, name, rep)
Definition: messages.F90:1000
character(len=256), dimension(max_lines), public message
to be output by fatal, warning
Definition: messages.F90:162
subroutine, public messages_fatal(no_lines, only_root_writes, namespace)
Definition: messages.F90:410
subroutine, public messages_input_error(namespace, var, details, row, column)
Definition: messages.F90:691
subroutine, public messages_experimental(name, namespace)
Definition: messages.F90:1040
subroutine, public modelmb_sym_all_states(space, mesh, st)
This module contains some common usage patterns of MPI routines.
Definition: mpi_lib.F90:117
This module handles the communicators for the various parallelization strategies.
Definition: multicomm.F90:147
integer, parameter, public velocity_gauge_dipole
this module contains the low-level part of the output system
Definition: output_low.F90:117
subroutine, public output_modelmb(outp, namespace, space, dir, gr, ions, iter, st)
this module contains the output system
Definition: output.F90:117
subroutine, public output_all(outp, namespace, space, dir, gr, ions, iter, st, hm, ks)
Definition: output.F90:496
subroutine, public output_scalar_pot(outp, namespace, space, dir, mesh, ions, ext_partners, time)
Definition: output.F90:1672
subroutine, public parse_block_string(blk, l, c, res, convert_to_c)
Definition: parser.F90:818
integer function, public parse_block(namespace, name, blk, check_varinfo_)
Definition: parser.F90:623
subroutine, public profiling_out(label)
Increment out counter and sum up difference between entry and exit time.
Definition: profiling.F90:631
subroutine, public profiling_in(label, exclude)
Increment in counter and save entry time.
Definition: profiling.F90:554
integer, parameter, public restart_gs
Definition: restart.F90:156
integer, parameter, public restart_proj
Definition: restart.F90:156
integer, parameter, public restart_type_load
Definition: restart.F90:184
subroutine, public zstates_elec_matrix(st1, st2, mesh, aa)
subroutine, public zstates_elec_calc_projections(st, gs_st, namespace, mesh, ik, proj, gs_nst)
This routine computes the projection between two set of states.
This module handles spin dimensions of the states and the k-point distribution.
logical function, public state_kpt_is_local(st, ist, ik)
check whether a given state (ist, ik) is on the local node
subroutine, public states_elec_end(st)
finalize the states_elec_t object
subroutine, public states_elec_deallocate_wfns(st)
Deallocates the KS wavefunctions defined within a states_elec_t structure.
subroutine, public states_elec_allocate_wfns(st, mesh, wfs_type, skip, packed)
Allocates the KS wavefunctions defined within a states_elec_t structure.
subroutine, public states_elec_copy(stout, stin, exclude_wfns, exclude_eigenval, special)
make a (selective) copy of a states_elec_t object
subroutine, public states_elec_look(restart, nik, dim, nst, ierr)
Reads the 'states' file in the restart directory, and finds out the nik, dim, and nst contained in it...
This module handles reading and writing restart information for the states_elec_t.
subroutine, public states_elec_load(restart, namespace, space, st, mesh, kpoints, fixed_occ, ierr, iter, lr, lowest_missing, label, verbose, skip)
returns in ierr: <0 => Fatal error, or nothing read =0 => read all wavefunctions >0 => could only rea...
subroutine, public td_calc_tacc(namespace, space, gr, ions, ext_partners, st, hm, acc, time)
Electronic acceleration (to calculate harmonic spectrum...) It is calculated as:
Definition: td_calc.F90:167
subroutine, public td_calc_tvel(namespace, gr, st, space, hm, ions, vel)
Electronic velocity (to calculate harmonic spectrum...) It is calculated as:
Definition: td_calc.F90:287
subroutine, public td_calc_ionch(mesh, st, ch, Nch)
Multiple ionization probabilities calculated form the KS orbital densities C. Ullrich,...
Definition: td_calc.F90:319
subroutine, public td_write_coordinates(out_coords, natoms, space, pos, vel, tot_forces, iter)
subroutine, public td_write_sep_coordinates(out_coords, natoms, space, pos, vel, tot_forces, iter, which)
subroutine, public td_write_print_header_init(out)
subroutine, public td_write_print_header_end(out)
subroutine td_write_magnetic_field_box_surface(out_field_surf, st, dim, iter)
Definition: td_write.F90:4210
integer, parameter, public out_total_current
Definition: td_write.F90:204
integer, parameter maxwell_b_field
Definition: td_write.F90:306
integer, parameter, public out_maxwell_max
Definition: td_write.F90:298
subroutine td_write_proj(out_proj, space, mesh, ions, st, gs_st, kick, iter)
Definition: td_write.F90:2440
integer, parameter, public out_q
Definition: td_write.F90:204
integer, parameter, public out_mxll_field
Definition: td_write.F90:204
subroutine calc_projections(mesh, st, gs_st, projections)
This subroutine calculates:
Definition: td_write.F90:2726
integer, parameter out_b_field_surface_y
Definition: td_write.F90:283
subroutine td_write_ionch(out_ionch, mesh, st, iter)
Definition: td_write.F90:2346
integer, parameter, public out_tot_m
Definition: td_write.F90:204
integer, parameter, public out_norm_ks
Definition: td_write.F90:204
integer, parameter out_maxwell_trans_b_field
Definition: td_write.F90:283
integer, parameter, public out_cell_parameters
Definition: td_write.F90:204
subroutine td_write_multipole_r(out_multip, space, mesh, ions, st, lmax, kick, rho, iter, mpi_grp)
Write multipoles to the corresponding file.
Definition: td_write.F90:1623
integer, parameter, public out_proj
Definition: td_write.F90:204
integer, parameter, public out_partial_charges
Definition: td_write.F90:204
integer, parameter, public out_separate_coords
Definition: td_write.F90:204
subroutine td_write_total_current(out_total_current, space, mesh, st, iter)
Definition: td_write.F90:3131
subroutine, public td_write_output(namespace, space, gr, st, hm, ks, outp, ions, ext_partners, iter, dt)
Definition: td_write.F90:1286
integer, parameter maxwell_trans_field
Definition: td_write.F90:301
subroutine td_write_energy(out_energy, mpi_grp, hm, iter, ke)
Definition: td_write.F90:2201
subroutine td_write_acc(out_acc, namespace, space, gr, ions, st, hm, ext_partners, dt, iter)
Definition: td_write.F90:1975
subroutine, public td_write_mxll_end(writ)
Definition: td_write.F90:3921
integer, parameter out_b_field_surface_x
Definition: td_write.F90:283
integer, parameter out_maxwell_long_e_field
Definition: td_write.F90:283
subroutine td_write_dm_proj_basis(out_dm_proj_basis, dmp_st, iter)
Definition: td_write.F90:4407
integer, parameter, public out_kp_proj
Definition: td_write.F90:204
integer, parameter, public out_magnets
Definition: td_write.F90:204
subroutine td_write_multipole(out_multip, space, gr, ions, st, lmax, kick, iter)
Top-level routine that write multipoles to file, or files depending on whether a state-resolved outpu...
Definition: td_write.F90:1576
subroutine td_write_electric_field_box_surface(out_field_surf, st, dim, iter)
Definition: td_write.F90:4130
subroutine td_write_floquet(namespace, space, hm, ext_partners, gr, st, iter)
Definition: td_write.F90:2854
integer, parameter out_e_field_surface_y
Definition: td_write.F90:283
integer, parameter, public out_angular
Definition: td_write.F90:204
subroutine td_write_populations(out_populations, namespace, space, mesh, st, writ, dt, iter)
Definition: td_write.F90:1895
integer, parameter, public out_max
Definition: td_write.F90:204
subroutine td_write_mxll_field(out_mxll, mpi_grp, space, hm, dt, iter)
Definition: td_write.F90:3417
integer, parameter out_maxwell_long_b_field
Definition: td_write.F90:283
integer, parameter, public out_energy
Definition: td_write.F90:204
subroutine, public td_write_mxll_init(writ, namespace, iter, dt, grp)
Definition: td_write.F90:3730
integer, parameter, public out_spin
Definition: td_write.F90:204
subroutine td_write_ftchd(out_ftchd, space, mesh, st, kick, iter)
Definition: td_write.F90:1750
subroutine td_write_partial_charges(out_partial_charges, mesh, st, ions, iter)
Definition: td_write.F90:3324
integer, parameter out_dftu_max
For the Maxwell fields we increment in steps of 3 to leave room for x, y, and z output.
Definition: td_write.F90:278
subroutine td_write_effective_u(out_coords, mpi_grp, lda_u, iter)
Definition: td_write.F90:3507
integer, parameter out_maxwell_total_b_field
Definition: td_write.F90:283
integer, parameter, public out_ftchd
Definition: td_write.F90:204
subroutine, public td_write_init(writ, namespace, space, outp, gr, st, hm, ions, ext_partners, ks, ions_move, with_gauge_field, kick, iter, max_iter, dt, mc, dmp)
Initialize files to write when prograting in time.
Definition: td_write.F90:380
integer, parameter, public out_separate_velocity
Definition: td_write.F90:204
subroutine td_write_tot_mag(out_magnets, mesh, st, kick, iter)
Definition: td_write.F90:1438
integer, parameter, public out_floquet
Definition: td_write.F90:204
subroutine td_write_spin(out_spin, mpi_grp, mesh, st, iter)
Definition: td_write.F90:1327
subroutine, public td_write_mxll_free_data(namespace, space, gr, st, hm, helmholtz, outp, iter, time)
Definition: td_write.F90:4381
integer, parameter, public out_acc
Definition: td_write.F90:204
integer, parameter, public out_ion_ch
Definition: td_write.F90:204
integer, parameter maxwell_long_field
Definition: td_write.F90:301
subroutine, public td_write_iter(writ, namespace, space, outp, gr, st, hm, ions, ext_partners, kick, ks, dt, iter, mc, recalculate_gs, dmp_st)
Definition: td_write.F90:1069
integer, parameter, public out_n_ex
Definition: td_write.F90:204
integer, parameter out_b_field_surface_z
Definition: td_write.F90:283
subroutine td_write_temperature(out_temperature, mpi_grp, ions, iter)
Definition: td_write.F90:1857
subroutine td_write_proj_kp(mesh, kpoints, st, gs_st, namespace, iter)
Definition: td_write.F90:2760
integer, parameter, public out_temperature
Definition: td_write.F90:204
subroutine td_write_norm_ks_orbitals(file_handle, grid, kpoints, st, iter)
Write the norm of the KS orbitals to file as a function of time step.
Definition: td_write.F90:3597
subroutine, public td_write_data(writ)
Definition: td_write.F90:1252
subroutine td_write_total_heat_current(write_obj, space, hm, gr, st, iter)
Definition: td_write.F90:3268
integer, parameter out_e_field_surface_z
Definition: td_write.F90:283
subroutine td_write_laser(out_laser, mpi_grp, space, lasers, dt, iter)
Definition: td_write.F90:2078
integer, parameter maxwell_total_field
Definition: td_write.F90:301
integer, parameter, public out_coords
Definition: td_write.F90:204
integer, parameter out_maxwell_total_e_field
Definition: td_write.F90:283
integer, parameter, public out_laser
Definition: td_write.F90:204
integer, parameter, public out_eigs
Definition: td_write.F90:204
integer, parameter, public out_total_heat_current
Definition: td_write.F90:204
integer, parameter out_e_field_surface_x
Definition: td_write.F90:283
subroutine, public td_write_kick(outp, namespace, space, mesh, kick, ions, iter)
Definition: td_write.F90:342
subroutine td_write_q(out_q, mpi_grp, space, ks, iter)
Definition: td_write.F90:3373
subroutine td_write_maxwell_energy(out_maxwell_energy, mpi_grp, hm, iter)
Definition: td_write.F90:4068
integer, parameter, public out_ionic_current
Definition: td_write.F90:204
subroutine, public td_write_end(writ)
Definition: td_write.F90:1022
subroutine td_write_angular(out_angular, namespace, space, gr, ions, hm, st, kick, iter)
Computes and outputs the orbital angular momentum defined by.
Definition: td_write.F90:1505
integer, parameter, public out_dm_proj_basis
Definition: td_write.F90:204
subroutine td_write_eigs(out_eigs, st, iter)
Definition: td_write.F90:2285
subroutine td_write_n_ex(out_nex, outp, namespace, mesh, kpoints, st, gs_st, iter)
This routine computes the total number of excited electrons based on projections on the GS orbitals T...
Definition: td_write.F90:2616
subroutine td_write_fields(out_fields, space, st, iter, dt, e_or_b_field, field_type, idir)
Definition: td_write.F90:4289
integer, parameter, public out_vel
Definition: td_write.F90:204
integer, parameter, public out_gauge_field
Definition: td_write.F90:204
subroutine td_write_ionic_current(out_ionic_current, space, ions, iter)
Definition: td_write.F90:3217
integer, parameter maxwell_e_field
Definition: td_write.F90:306
integer, parameter, public out_populations
Definition: td_write.F90:204
subroutine, public td_write_mxll_iter(writ, space, gr, st, hm, helmholtz, dt, iter, namespace)
Definition: td_write.F90:3937
subroutine td_write_cell_parameters(file_handle, ions, iter)
Write the cell parameters as a function of time.
Definition: td_write.F90:3666
subroutine td_write_local_magnetic_moments(out_magnets, gr, st, ions, lmm_r, iter)
Definition: td_write.F90:1380
subroutine td_write_vel(out_vel, namespace, gr, st, space, hm, ions, iter)
Definition: td_write.F90:2027
integer, parameter out_maxwell_energy
Definition: td_write.F90:283
integer, parameter, public out_separate_forces
Definition: td_write.F90:204
integer, parameter out_maxwell_trans_e_field
Definition: td_write.F90:283
type(type_t), public type_cmplx
Definition: types.F90:136
brief This module defines the class unit_t which is used by the unit_systems_oct_m module.
Definition: unit.F90:134
character(len=20) pure function, public units_abbrev(this)
Definition: unit.F90:225
This module defines the unit system, used for input and output.
type(unit_system_t), public units_out
type(unit_t), public unit_kelvin
For converting energies into temperatures.
type(unit_system_t), public units_inp
the units systems for reading and writing
type(unit_t), public unit_one
some special units required for particular quantities
This module is intended to contain simple general-purpose utility functions and procedures.
Definition: utils.F90:120
character pure function, public index2axis(idir)
Definition: utils.F90:205
subroutine, public v_ks_calculate_current(this, calc_cur)
Definition: v_ks.F90:1527
subroutine, public v_ks_calc(ks, namespace, space, hm, st, ions, ext_partners, calc_eigenval, time, calc_energy, calc_current, force_semilocal)
Definition: v_ks.F90:755
Explicit interfaces to C functions, defined in write_iter_low.cc.
Definition: write_iter.F90:116
subroutine, public write_iter_header(out, string)
Definition: write_iter.F90:249
subroutine, public write_iter_string(out, string)
Definition: write_iter.F90:265
subroutine, public write_iter_init(out, iter, factor, file)
Definition: write_iter.F90:229
Extension of space that contains the knowledge of the spin dimension.
Description of the grid, containing information on derivatives, stencil, and symmetries.
Definition: grid.F90:171
Describes mesh distribution to nodes.
Definition: mesh.F90:187
This is defined even when running serial.
Definition: mpi.F90:144
Stores all communicators and groups.
Definition: multicomm.F90:208
output handler class
Definition: output_low.F90:166
The states_elec_t class contains all electronic wave functions.
Time-dependent Write Properties.
Definition: td_write.F90:324
int true(void)
subroutine dipole_matrix_elements(dir)
Definition: td_write.F90:2560