Example #1
0
'''
Created on 30.03.2016

@author: jannik
'''

from Materialien.particleList import ParticleList
from Fachwerte.particle import Particle

mylist = ParticleList()
for i in range(5):
    mylist.addParticle(Particle(1,1,1,1))
    
a = mylist.GET()
a.pop(2)
a.pop(1)

b = mylist.GET()

print mylist.GET()
print a == b
Example #2
0
'''
Created on 21.03.2016

@author: jannik
'''

from Werkzeug import KSoPSWerkzeug

from Fachwerte.singleMeasure import SingleMeasure
from Fachwerte.initVals import InitVals
from Materialien.particleList import ParticleList

smeasure = SingleMeasure()
adatomList = ParticleList()
initval = InitVals()

w= KSoPSWerkzeug.Werkzeug()

w.sputter(adatomList)
print adatomList.clusterNumber()