Home
last modified time | relevance | path

Searched refs:UnitCell (Results 1 – 25 of 262) sorted by last modified time

1234567891011

/dports/science/py-molmod/molmod-1.4.8/molmod/
H A Dmolecules.py35 from molmod.unit_cells import UnitCell
96 unit_cell = ReadOnlyAttribute(UnitCell, doc="description of the periodic "
H A Dtransformations.py38 from molmod.unit_cells import UnitCell
130 elif isinstance(x, UnitCell):
284 elif isinstance(x, UnitCell):
285 return UnitCell(np.dot(self.r, x.matrix), x.active)
416 elif isinstance(x, UnitCell):
417 return UnitCell(np.dot(self.r, x.matrix), x.active)
H A Dbinning.py40 from molmod.unit_cells import UnitCell
131 grid_cell = UnitCell(np.array([
136 elif isinstance(grid, UnitCell):
148 integer_cell = UnitCell(integer_matrix, unit_cell.active)
H A Dunit_cells.py37 class UnitCell(ReadOnly): class
200 return UnitCell(self.matrix[:,order], self.active[order])
299 return UnitCell(matrix, active)
308 return UnitCell(matrix, active)
317 return UnitCell(matrix, active)
/dports/science/py-molmod/molmod-1.4.8/molmod/io/
H A Dcrystal.py32 from molmod import UnitCell, Molecule
71 self.unit_cell = UnitCell(vectors.transpose())
/dports/science/py-molmod/molmod-1.4.8/molmod/test/
H A Dtest_molecules.py123 uc = UnitCell.from_parameters3(
H A Dtest_toyff.py192 unit_cell = UnitCell(
H A Dtest_binning.py145 unit_cell = UnitCell.from_parameters3(
H A Dtest_unit_cells.py44 result = UnitCell(np.random.uniform(-scale, scale, (3, 3)), active)
57 uc = UnitCell.from_parameters3(in_lengths, in_angles)
150 uc0 = UnitCell(np.identity(3, float), np.zeros(3,bool))
158 uc = UnitCell(np.identity(3,float)*3)
189 uc = UnitCell(np.identity(3, float))
195 uc = UnitCell(np.identity(3,float)*3)
220 uc = UnitCell(np.identity(3, float), np.array([True, True, False]))
321 uc = UnitCell(np.array([
446 uc = UnitCell(matrix)
465 uc = UnitCell(matrix)
[all …]
/dports/science/jmol/jmol-14.32.7/src/org/jmol/viewer/
H A DJmol.properties362 bug fix: UnitCell transform should be included in COMPARE FRAME
/dports/science/jmol/jmol-14.32.7/src/org/jmol/symmetry/
H A DSymmetryOperation.java899 V3[] rotateAxes(V3[] vectors, UnitCell unitcell, P3 ptTemp, M3 mTemp) { in rotateAxes()
H A DUnitCell.java61 class UnitCell extends SimpleUnitCell implements Cloneable { class
80 private UnitCell() { in UnitCell() method in UnitCell
93 static UnitCell fromOABC(T3[] oabc, boolean setRelative) { in fromOABC()
94 UnitCell c = new UnitCell(); in fromOABC()
113 public static UnitCell fromParams(float[] params, boolean setRelative) { in fromParams()
114 UnitCell c = new UnitCell(); in fromParams()
516 public boolean isSameAs(UnitCell uc) { in isSameAs()
821 public static UnitCell cloneUnitCell(UnitCell uc) { in cloneUnitCell()
822 UnitCell ucnew = null; in cloneUnitCell()
824 ucnew = (UnitCell) uc.clone(); in cloneUnitCell()
H A DSpaceGroup.java1713 int getSiteMultiplicity(P3 pt, UnitCell unitCell) { in getSiteMultiplicity()
H A DSymmetry.java82 private UnitCell unitCell;
430 unitCell = UnitCell.fromParams(unitCellParams, setRelative); in setUnitCell()
506 unitCell = UnitCell.fromParams(new float[] { 1, 1, 1, 90, 90, 90 }, true); in getTensor()
590 unitCell = UnitCell.fromOABC(oabc, setRelative); in getUnitCell()
738 unitCell = UnitCell.fromOABC(oabc, false); in toFromPrimitive()
849 unitCell = UnitCell.cloneUnitCell(uc.unitCell); in setUnitCell()
/dports/graphics/digikam/digikam-7.4.0/core/libs/dngwriter/extra/dng_sdk/
H A Ddng_area_task.cpp163 dng_point unitCell = UnitCell (); in FindTileSize()
H A Ddng_area_task.h106 virtual dng_point UnitCell () const in UnitCell() function
/dports/science/qbox/qbox-public-rel1_73_3/src/
H A DAngleCmd.h121 const UnitCell& cell = s->wf.cell(); in action()
H A DAtomSet.cpp752 void AtomSet::sync_cell(UnitCell& cell) in sync_cell()
H A DBasis.h34 UnitCell cell_; // cell dimensions
35 UnitCell refcell_; // reference cell dimensions
74 const UnitCell& cell() const; // cell dimensions
75 const UnitCell& refcell() const;// reference cell dimensions
145 bool resize(const UnitCell& cell, const UnitCell& refcell, double ecut);
H A DCGCellStepper.cpp57 const UnitCell cell = s_.wf.cell(); in compute_new_cell()
H A DCGCellStepper.h30 UnitCell cell0;
H A DCellStepper.h32 UnitCell cellp;
H A DEnergyFunctional.h36 class UnitCell; variable
H A DKpointCmd.h117 const UnitCell& u = s->wf.cell(); in action()
H A DUnitCell.h25 class UnitCell
52 UnitCell(void) { set(D3vector(0,0,0),D3vector(0,0,0),D3vector(0,0,0)); } in UnitCell() function
53 explicit UnitCell(const D3vector& a0, const D3vector& a1, const D3vector& a2) in UnitCell() function
90 bool encloses(const UnitCell& c) const;
94 bool operator==(const UnitCell& c) const;
95 bool operator!=(const UnitCell& c) const;
97 std::ostream& operator << ( std::ostream& os, const UnitCell& cell );

1234567891011