Dear developers and users,
I reproduce the results of Long's paper discribing the phosphorene recombinationas mentioned in JPCL,7,2016,653-659, where the recombination is 0.108 ns. But muy repeat result
is about 3 ps. I used single unit cell of phosphorene, QE for ab initio MD and relaxation.
My input file is :
# Simulation type
params["runtype"] = "namd" # Type of calculation to perform. Possible values:
# "namd" - to do NA-MD calculations, "no-namd"(or any other) - to
# perform only pre-processing steps - this will create the files with
# the energies of basis states and will output some useful information,
# it may be particularly helpful for preparing your input
params["decoherence"] = 1 # Do you want to include decoherence via DISH? Possible values:
# 0 - no, 1 - yes
params["is_field"] = 0 # Do you want to include laser excitation via explicit light-matter
# interaction Hamiltonian? Possible values: 0 - no, 1 - yes
# Integrator parameters
params["elec_dt"] = 0.1 # Electronic integration time step, fs
params["nucl_dt"] = 1.0 # Nuclear integration time step, fs (this parameter comes from
# you x.md.in file)
params["integrator"] = 0 # Integrator to solve TD-SE. Possible values: 0, 10,11, 2 # NA-MD trajectory and SH control
params["namdtime"] = 6000 # Trajectory time, fs
params["num_sh_traj"] = 1500 # Number of stochastic realizations for each initial condition
params["boltz_flag"] = 1 # Boltzmann flag (set to 1 anyways)
params["Temp"] = 300.0 # Temperature of the system
params["alp_bet"] = 0 # How to treat spin. Possible values: 0 - alpha and beta spins are not
# coupled to each other, 1 - don't care about spins, only orbitals matter
params["debug_flag"] = 0 # If you want extra output. Possible values: 0, 1, 2, ...
# as the number increases the amount of the output increases too
# Be carefull - it may result in a huge output!
# Parameters of the field (if it is included)
params["field_dir"] = "xyz" # Direction of the field. Possible values: "x","y","z","xy","xz","yz","xyz"
params["field_protocol"] = 1 # Envelope function. Possible values: 1 - step function, 2 - saw-tooth
params["field_Tm"] = 25.0 # Middle of the time interval during which the field is active
params["field_T"] = 25.0 # The period (duration) of the field pulse
params["field_freq"] = 3.0 # The frequency of the field radiation = energy of the photons
params["field_freq_units"] = "eV" # Units of the above quantity. Possible values: "eV", "nm","1/fs","rad/fs"
params["field_fluence"] = 1.0 # Defines the light radiation intensity (fluence), mJ/cm^2
###############################################################
# Set active space and the basis states
params["active_space"] = range(1,30) #[175,176,...,185,186]
params["states"] = []
params["states"].append(["GS",[10,-10],0.00]) # ground state
params["states"].append(["S0",[11,-10],0.69]) # excited state
################################################################
############ Initial conditions choice:222222
nmicrost = len(params["states"])
ic = []
i = 0
while i<100:
j = 0
while j<nmicrost:
ic.append([20*i,j])
j = j + 1
i = i + 1
params["iconds"] = ic
and here is the input for NAC
# on the NAC calculation step
python -c "from PYXAID import *
params = { }
params[\"NP\"]=16
params[\"EXE\"]=\"$exe_qespresso\"
params[\"EXE_EXPORT\"]=\"$exe_export\"
params[\"start_indx\"]=$param1
params[\"stop_indx\"]=$param2
params[\"wd\"]=\"wd_test\"
params[\"rd\"]=\"$res\"
params[\"minband\"]=1
params[\"nocc\"]=10
params[\"maxband\"]=64
params[\"nac_method\"]=0
params[\"wfc_preprocess\"]=\"complete\"
params[\"do_complete\"]=1
params[\"prefix0\"]=\"x0.scf\"
params[\"prefix1\"]=\"x1.scf\"
params[\"compute_Hprime\"]=1
print params
runMD.runMD(params)
"
Why the two results differ so much?
Thanks!
Shudong