Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - wisam

Pages: [1]
1
General Questions and Answers / Add ions of elements
« on: July 22, 2023, 17:02 »
Hi all,
How can I add iron ions (I) and (II) to a crystal structure?
In Builder ATK, the periodic table does not contain ions of elements.

2
This can be done with some easy Python scripting. If you have an HDF5 file with a transmission spectrum and phonon transmission spectrum, the following code will compute these quantities for a given temperature. Then you just have to loop over the temperature and plot it.

Code: python
transmission_spectrum = nlread("file.hdf5", TransmissionSpectrum)[-1]
phonon_transmission_spectrum = nlread("file.hdf5", PhononTransmissionSpectrum)[-1]
temperature = 300*Kelvin

from AddOns.TransportCoefficients.Utilities import evaluateMoments
k0, k1, k2 = evaluateMoments(transmission_spectrum, temperature)

thermal_conductance_phonons = phonon_transmission_spectrum.thermalConductance(temperature)

conductance =  k0
peltier_coefficient = -k1/(k0*Units.e)
seebeck_coefficient = -k1/(k0*Units.e*temperature)
thermal_conductance_electrons=  (k2*k0-k1*k1)/(temperature*k0*Units.e**2)
total_thermal_conductance = thermal_conductance_electrons + thermal_conductance_phonons
zt = conductance*seebeck_coefficient**2*temperature/total_thermal_conductance

Sorry if I made any typos, I had no good case to check against right at hand, but hopefully you get the idea.

If you have a spin-polarized system, each quantity k0, k1, k2 needs to be separately evaluated for up and down spin and then all quantities are added up (a bit complex, we can add this later in this discussion if relevant).

Dear Anders Blom
I tried hard using Python scripting, but unfortunately, I didn't get a result because I didn't know how to write codes using Python.
I want to attach an HDF5 file with the transmission and phonon spectrum, but the site does not allow it because it is too large.
Please send me your email for sending the file, and I ask you to help me write the complete code to calculate these quantities with temperature.
I desperately need your help.
Sincere regards
Emal: wisam122@ahoo.com

3
Hello.

I am having a problem with obtaining the Thermoelectric coefficients vs Temperature.
I have followed this tutorial and got the thermal conductance of phonons vs Temperature graph, and I got it one.
https://docs.quantumatk.com/tutorials/thermoelectrics_cnt_isotope/thermoelectrics_cnt_isotope.html
But the graphs I want are the thermal conductance of electrons, Seebeck coefficient, Peltier coefficients, and ZT vs Temperature. Is there any way I can get ZT vs Temperature with Quantum ATK?

Thank you.

4
Dear Tom Jiao
I am interested in your question. Did you get an answer?
I hope you will guide me to that.

5
General Questions and Answers / doping concentration
« on: March 8, 2022, 17:43 »
Dear all,
How can the doping concentration be used in cm-2 unit?

Pages: [1]