Home
last modified time | relevance | path

Searched refs:lattvecs (Results 1 – 13 of 13) sorted by relevance

/dports/science/py-phonopy/phonopy-2.11.0/phonopy/interface/
H A Dturbomole.py161 lattvecs = []
171 lattvecs.append([float(x) for x in lattvec.split()])
208 if len(lattvecs) == 3 and len(aspecies) > 0 and len(aspecies) == len(coords):
209 self._tags['lattice_vectors'] = lattvecs
H A Dcastep.py186 lattvecs = []
201 lattvecs.append([(float(lines[i].split()[j])*units) for j in range(3)])
223 if len(lattvecs) == 3 and len(aspecies) > 0 and len(aspecies) == len(coords):
224 self._tags['lattice_vectors'] = lattvecs
H A Dcrystal.py265 lattvecs = []
269 lattvecs.append([float(x) for x in lines[l].split()])
286 …if len(lattvecs) == 3 and len(aspecies) > 0 and len(aspecies) == len(coords) and len(aspecies) == …
287 self._tags['lattice_vectors'] = lattvecs
/dports/science/phonopy/phonopy-2.11.0/phonopy/interface/
H A Dturbomole.py161 lattvecs = []
171 lattvecs.append([float(x) for x in lattvec.split()])
208 if len(lattvecs) == 3 and len(aspecies) > 0 and len(aspecies) == len(coords):
209 self._tags['lattice_vectors'] = lattvecs
H A Dcastep.py186 lattvecs = []
201 lattvecs.append([(float(lines[i].split()[j])*units) for j in range(3)])
223 if len(lattvecs) == 3 and len(aspecies) > 0 and len(aspecies) == len(coords):
224 self._tags['lattice_vectors'] = lattvecs
H A Dcrystal.py265 lattvecs = []
269 lattvecs.append([float(x) for x in lines[l].split()])
286 …if len(lattvecs) == 3 and len(aspecies) > 0 and len(aspecies) == len(coords) and len(aspecies) == …
287 self._tags['lattice_vectors'] = lattvecs
/dports/science/jmol/jmol-14.32.7/src/org/jmol/adapter/readers/xtal/
H A DJanaReader.java62 private Lst<float[]> lattvecs; field in JanaReader
128 if (lattvecs == null) in checkLine()
129 lattvecs = new Lst<float[]>(); in checkLine()
130 if (!ms.addLatticeVector(lattvecs, line.substring(8))) in checkLine()
187 if (lattvecs != null && lattvecs.size() > 0) in finalizeSubclassReader()
188 asc.getSymmetry().addLatticeVectors(lattvecs); in finalizeSubclassReader()
/dports/science/jmol/jmol-14.32.7/src/org/jmol/adapter/readers/cif/
H A DCifReader.java696 lattvecs = null; in addLatticeVectors()
703 lattvecs = new Lst<float[]>(); in addLatticeVectors()
720 lattvecs.addLast(f); in addLatticeVectors()
724 lattvecs = new Lst<float[]>(); in addLatticeVectors()
726 ms.addLatticeVector(lattvecs, latticeType); in addLatticeVectors()
731 if (lattvecs != null && lattvecs.size() > 0 in addLatticeVectors()
732 && asc.getSymmetry().addLatticeVectors(lattvecs)) { in addLatticeVectors()
733 appendLoadNote("Note! " + lattvecs.size() in addLatticeVectors()
735 for (int i = 0; i < lattvecs.size(); i++) in addLatticeVectors()
736 appendLoadNote(PT.toJSON(null, lattvecs.get(i))); in addLatticeVectors()
[all …]
H A DMSRdr.java1108 public boolean addLatticeVector(Lst<float[]> lattvecs, String data) in addLatticeVector() argument
1126 addLatticeVector(lattvecs, "A"); in addLatticeVector()
1127 addLatticeVector(lattvecs, "B"); in addLatticeVector()
1128 addLatticeVector(lattvecs, "C"); in addLatticeVector()
1141 lattvecs.addLast(a); in addLatticeVector()
/dports/science/jmol/jmol-14.32.7/src/org/jmol/adapter/smarter/
H A DMSInterface.java38 boolean addLatticeVector(Lst<float[]> lattvecs, String substring) throws Exception; in addLatticeVector() argument
/dports/science/jmol/jmol-14.32.7/src/org/jmol/symmetry/
H A DSpaceGroup.java1682 boolean addLatticeVectors(Lst<float[]> lattvecs) { in addLatticeVectors() argument
1683 if (latticeOp >= 0 || lattvecs.size() == 0) in addLatticeVectors()
1686 boolean isMagnetic = (lattvecs.get(0).length == modDim + 4); in addLatticeVectors()
1688 for (int j = 0; j < lattvecs.size(); j++) { in addLatticeVectors()
1689 float[] data = lattvecs.get(j); in addLatticeVectors()
H A DSymmetry.java264 public boolean addLatticeVectors(Lst<float[]> lattvecs) { in addLatticeVectors() argument
265 return spaceGroup.addLatticeVectors(lattvecs); in addLatticeVectors()
/dports/science/jmol/jmol-14.32.7/src/org/jmol/api/
H A DSymmetryInterface.java26 public boolean addLatticeVectors(Lst<float[]> lattvecs); in addLatticeVectors() argument