Author Topic: oxidation states  (Read 3461 times)

0 Members and 1 Guest are viewing this topic.

Offline daniel_aravena

  • New QuantumATK user
  • *
  • Posts: 3
  • Reputation: 0
    • View Profile
oxidation states
« on: August 16, 2010, 00:38 »
Dear All,

I want to perform some calculations on iron(II) complexes so i should set a d6s0 electronic configuration for iron, it is possible to change orbital occupancies in the basis set but it looks like you can define only one basis set per element, my question is:

is it possible to define two (or more) basis sets with diffrent occupancies for the same element?,

Thanks
Daniel

Offline Anders Blom

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 5421
  • Country: dk
  • Reputation: 89
    • View Profile
    • QuantumATK at Synopsys
Re: oxidation states
« Reply #1 on: August 16, 2010, 08:52 »
Yes, it can be done. It's a bit tricky, however, so let me get back to you on it :)

Offline Nordland

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 812
  • Reputation: 18
    • View Profile
Re: oxidation states
« Reply #2 on: August 17, 2010, 10:01 »
I think I can help you, but I am must be sure of what exactly you are asking.

Do you want a different basis set for each iron atom in the cell or do you want a basis set for iron with a different occupations?

Offline daniel_aravena

  • New QuantumATK user
  • *
  • Posts: 3
  • Reputation: 0
    • View Profile
Re: oxidation states
« Reply #3 on: August 17, 2010, 10:33 »
I want to define different occupancies for the same element using the same basis set. Anyway, it would be great to know how to set different basis sets in general.

Offline Nordland

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 812
  • Reputation: 18
    • View Profile
Re: oxidation states
« Reply #4 on: August 17, 2010, 10:40 »
A good starting tip to get you started, can be to use the scripter and set the "Script Detail" to "Show Defaults". Then you will be able to customize it all in all the details you want.

Offline Nordland

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 812
  • Reputation: 18
    • View Profile
Re: oxidation states
« Reply #5 on: August 17, 2010, 14:37 »
This is how I would do it.
  • Create a Iron(II) element using all the properties from Iron.
  • Used the DZP basis set for Iron, to create another basis set for Iron(II) with a different occupation
  • And go!
Code: python
###############################################################
# Creating a second Iron element.
###############################################################
class Iron2(Iron):
    @staticmethod
    def symbol(): return 'Fe(II)'

# Replace the Iron with Iron(II) for atom 2 and 4.
bulk_configuration.elements()[2] = Iron2
bulk_configuration.elements()[4] = Iron2

# It is required in ATK 10.8.0 to insert this snippet in order 
# for it work properly. This is not required in newer versions.
def symbols(self): return [x.symbol() for x in self.elements()]
BulkConfiguration.symbols = symbols

###############################################################
# Setting up a basis set for Iron(II) starting from the 
# Iron DZP basis set, but using a the new element, and
# a new occupation.
###############################################################
iron2_dzp = LDABasis.Iron_DoubleZetaPolarized(element=Iron2,
                                             occupations=[8.0,0.0,0.0,0.0,0.0])
basis_set = [ iron2_dzp ] + LDABasis.DoubleZetaPolarized

However there are a few pitfalls to avoid:
  • If you adjust the occupation of the orbitals, you have to consider using a different pseudo-potential for the Iron(II) element to get the best results.
  • There is no support for saving the SCF results, and restarting from it when using a custom element. Therefore you have to select all the analysis up-front
I have attached a script where I use this approach on a LiFe2F6 crystal.

Offline daniel_aravena

  • New QuantumATK user
  • *
  • Posts: 3
  • Reputation: 0
    • View Profile
Re: oxidation states
« Reply #6 on: August 17, 2010, 16:39 »
that was exactly what i needed, thank you very much

Offline Nordland

  • QuantumATK Staff
  • Supreme QuantumATK Wizard
  • *****
  • Posts: 812
  • Reputation: 18
    • View Profile
Re: oxidation states
« Reply #7 on: August 17, 2010, 18:03 »
You are welcome :)