crystalcell 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,19 +1,5 @@
1
1
  #! /usr/bin/env ruby
2
2
 
3
- require "pp"
4
- require "matrix"
5
-
6
- require "rubygems"
7
- gem "builtinextension"
8
- require "array/selectindices.rb"
9
-
10
- gem "maset"
11
- require "maset/mapping.rb"
12
-
13
- #pp Getspg.methods.sort
14
- #pp Getspg
15
- #include Getspg
16
-
17
3
  #Class for crystal cell with lattice axes and atoms.
18
4
  #Symmetry operations are not considered in this class.
19
5
  #A sub class SymmetricCell can do, which overrides equal_in_delta methods.
@@ -39,592 +25,562 @@ require "maset/mapping.rb"
39
25
  # 疑問が生じる。
40
26
  class CrystalCell::Cell
41
27
 
42
- begin
43
- require "getspg.so"
44
- include Getspg
45
- rescue LoadError
46
- #Do nothing.
47
- #To use basic functions even in environments without spglib.
48
- end
49
-
50
- include Mageo
51
-
52
- class NoAtomError < Exception; end
53
- class AxesMismatchError < Exception; end
54
- class AxesRangeError < Exception; end
55
- class SameAxesError < Exception; end
56
- class TypeError < Exception; end
57
- class ArgumentError < Exception; end #その他的エラー
58
- class NoSpglibError < Exception; end
59
-
60
- attr_reader :element_names, :atoms, :axes
61
- attr_accessor :comment
62
-
63
- #Argument 'axes' must have :to_a method and expressed in 3x3 Array.
64
- def initialize(axes, atoms = [])
65
- #raise CellTypeError unless axes.is_a?(Axes)
66
- if axes.class == CrystalCell::LatticeAxes
67
- @axes = axes
68
- else
69
- @axes = CrystalCell::LatticeAxes.new( axes.to_a )
70
- end
71
-
72
- atoms.each do |atom|
73
- #pp atom
74
- unless atom.is_a?(CrystalCell::Atom)
75
- raise CellTypeError,
76
- "#{atom} is not a kind of CrystalCell::Atom."
77
- end
78
- end
79
- @atoms = atoms
80
- end
81
-
82
- #セルに原子を追加する。
83
- def add_atom(atom)
84
- #raise "Cell::add_atom, 2nd argument must be Array." if pos.class != Array
85
- raise CellTypeError unless atom.is_a?(CrystalCell::Atom)
86
- @atoms << atom
87
- end
88
-
89
- #Delete an atom from a cell.
90
- #i は Cell クラスが保持している原子の番号。
91
- #Cell クラスは原子を配列として保持しており、
92
- #その番号を指定すると考えると分かり易かろう。
93
- def delete_atom( i )
94
- #raise "CrystalCell::Atom ID[#{i}] not exist" if @atoms[i] == nil
95
- @atoms.delete_at( i )
96
- end
97
-
98
- #全ての原子の元素情報のリストを返す。
99
- #unique なものを抽出したりはしない。
100
- #unique なものが必要なら返り値に .uniq をつければ良い。
101
- #e.g., #=> ['Li', 'N', 'Li']
102
- #e.g., #=> [0, 1, 2, 1]
103
- def elements
104
- @atoms.collect{ |i| i.element }
105
- end
106
-
107
- #全ての原子の位置情報のリストを返す。
108
- def positions
109
- @atoms.collect{ |i| i.position }
110
- end
111
-
112
- #元素情報が elem の原子の index を配列にまとめて返す。
113
- #index は原子の永続的な id ではない。
114
- #Array#select は index ではなく要素そのものを配列にして返すので、少し違う。
115
- def select_indices( &block )
116
- return @atoms.select_indices( &block )
117
- end
118
-
119
- #Set element name to each atom in self.
120
- #Argument 'elems' is a list of new names, which has [] method. e.g.,
121
- # 1. Array, [ 'Li', 'O' ]
122
- # 2. Hash , { 0 => 'Li', 1 => 'O' ]
123
- # 3. Hash , { 'Li' => 'Na' }
124
- #1. and 2. of the above examples induce the same result.
125
- #Case 1. can be convenient for element names of array from POTCAR.
126
- #
127
- #The atoms with the name which is not included the hash key do not change their names.
128
- def set_elements( elems )
129
- @atoms.each do |atom|
130
- begin
131
- new_elem = elems[ atom.element ]
132
- rescue
133
- next
134
- end
135
- next if new_elem == nil
136
- atom.element = new_elem
137
- end
138
- end
139
-
140
- #セルを拡張したスーパーセルを考えたとき、中に含まれる原子のリストを返す。
141
- #引数の意味は以下の通り。
142
- #a_min : a 軸方向のセルの方向を整数で示したときの最小値
143
- #a_max : a 軸方向のセルの方向を整数で示したときの最大値
144
- #b_min : b 軸方向のセルの方向を整数で示したときの最小値
145
- #b_max : b 軸方向のセルの方向を整数で示したときの最大値
146
- #c_min : c 軸方向のセルの方向を整数で示したときの最小値
147
- #c_max : c 軸方向のセルの方向を整数で示したときの最大値
148
- #-1, 1, -1, 1, -1, 1 と指定すれば 3x3x3 の 27倍体積の構造になる。
149
- def atoms_in_supercell( a_min, a_max, b_min, b_max, c_min, c_max )
150
- results = []
151
- @atoms.each do |atom|
152
- a_min.upto( a_max ) do |a|
153
- b_min.upto( b_max ) do |b|
154
- c_min.upto( c_max ) do |c|
155
- results << CrystalCell::Atom.new( atom.element, (atom.position.to_v3di + [ a, b, c ].to_v3di).to_a )
156
- end
157
- end
158
- end
28
+ begin
29
+ require "getspg.so"
30
+ include Getspg
31
+ rescue LoadError
32
+ #Do nothing.
33
+ #To use basic functions even in environments without spglib.
34
+ end
35
+
36
+ include Mageo
37
+
38
+ class NoAtomError < Exception; end
39
+ class AxesMismatchError < Exception; end
40
+ class AxesRangeError < Exception; end
41
+ class SameAxesError < Exception; end
42
+ class TypeError < Exception; end
43
+ class ArgumentError < Exception; end #その他的エラー
44
+ class NoSpglibError < Exception; end
45
+
46
+ attr_reader :element_names, :atoms, :axes
47
+ attr_accessor :comment
48
+
49
+ #Argument 'axes' must have :to_a method and expressed in 3x3 Array.
50
+ def initialize(axes, atoms = [])
51
+ #raise CellTypeError unless axes.is_a?(Axes)
52
+ if axes.class == CrystalCell::LatticeAxes
53
+ @axes = axes
54
+ else
55
+ @axes = CrystalCell::LatticeAxes.new( axes.to_a )
56
+ end
57
+
58
+ atoms.each do |atom|
59
+ #pp atom
60
+ unless atom.is_a?(CrystalCell::Atom)
61
+ raise CellTypeError,
62
+ "#{atom} is not a kind of CrystalCell::Atom."
63
+ end
64
+ end
65
+ @atoms = atoms
66
+ end
67
+
68
+ #セルに原子を追加する。
69
+ def add_atom(atom)
70
+ #raise "Cell::add_atom, 2nd argument must be Array." if pos.class != Array
71
+ raise CellTypeError unless atom.is_a?(CrystalCell::Atom)
72
+ @atoms << atom
73
+ end
74
+
75
+ #Delete an atom from a cell.
76
+ #i は Cell クラスが保持している原子の番号。
77
+ #Cell クラスは原子を配列として保持しており、
78
+ #その番号を指定すると考えると分かり易かろう。
79
+ def delete_atom( i )
80
+ #raise "CrystalCell::Atom ID[#{i}] not exist" if @atoms[i] == nil
81
+ @atoms.delete_at( i )
82
+ end
83
+
84
+ #全ての原子の元素情報のリストを返す。
85
+ #unique なものを抽出したりはしない。
86
+ #unique なものが必要なら返り値に .uniq をつければ良い。
87
+ #e.g., #=> ['Li', 'N', 'Li']
88
+ #e.g., #=> [0, 1, 2, 1]
89
+ def elements
90
+ @atoms.collect{ |i| i.element }
91
+ end
92
+
93
+ #全ての原子の位置情報のリストを返す。
94
+ def positions
95
+ @atoms.collect{ |i| i.position }
96
+ end
97
+
98
+ #元素情報が elem の原子の index を配列にまとめて返す。
99
+ #index は原子の永続的な id ではない。
100
+ #Array#select は index ではなく要素そのものを配列にして返すので、少し違う。
101
+ def select_indices( &block )
102
+ return @atoms.select_indices( &block )
103
+ end
104
+
105
+ #Set element name to each atom in self.
106
+ #Argument 'elems' is a list of new names, which has [] method. e.g.,
107
+ # 1. Array, [ 'Li', 'O' ]
108
+ # 2. Hash , { 0 => 'Li', 1 => 'O' ]
109
+ # 3. Hash , { 'Li' => 'Na' }
110
+ #1. and 2. of the above examples induce the same result.
111
+ #Case 1. can be convenient for element names of array from POTCAR.
112
+ #
113
+ #The atoms with the name which is not included the hash key do not change their names.
114
+ def set_elements( elems )
115
+ @atoms.each do |atom|
116
+ begin
117
+ new_elem = elems[ atom.element ]
118
+ rescue
119
+ next
120
+ end
121
+ next if new_elem == nil
122
+ atom.element = new_elem
123
+ end
124
+ end
125
+
126
+ #セルを拡張したスーパーセルを考えたとき、中に含まれる原子のリストを返す。
127
+ #引数の意味は以下の通り。
128
+ #a_min : a 軸方向のセルの方向を整数で示したときの最小値
129
+ #a_max : a 軸方向のセルの方向を整数で示したときの最大値
130
+ #b_min : b 軸方向のセルの方向を整数で示したときの最小値
131
+ #b_max : b 軸方向のセルの方向を整数で示したときの最大値
132
+ #c_min : c 軸方向のセルの方向を整数で示したときの最小値
133
+ #c_max : c 軸方向のセルの方向を整数で示したときの最大値
134
+ #-1, 1, -1, 1, -1, 1 と指定すれば 3x3x3 の 27倍体積の構造になる。
135
+ def atoms_in_supercell( a_min, a_max, b_min, b_max, c_min, c_max )
136
+ results = []
137
+ @atoms.each do |atom|
138
+ a_min.upto( a_max ) do |a|
139
+ b_min.upto( b_max ) do |b|
140
+ c_min.upto( c_max ) do |c|
141
+ results << CrystalCell::Atom.new( atom.element, (atom.position.to_v3di + [ a, b, c ].to_v3di).to_a )
142
+ end
159
143
  end
160
- results
161
- end
162
-
163
- #他のセルと格子定数が等価であれば true を、そうでなければ false を返す。
164
- #other: 他のセル
165
- #length_ratio: 長さ(a, b, c) の許容値を比で指定
166
- #angle_tolerance: 角度(alpha, beta, gamma) の許容値を角度の値で指定
167
- def equal_lattice_in_delta?( other, length_ratio, angle_tolerance )
168
- @axes.equal_in_delta?(
169
- CrystalCell::LatticeAxes.new( other.axes.to_a ), length_ratio, angle_tolerance
170
- )
171
- end
172
-
173
- #含まれる全原子が等価比較で一対一対応が付けられれば true を返す。
174
- #Cell に保持される順番に関係なく、等価な原子同士が一対一に対応づけられるかで
175
- #チェックする。
176
- def equal_atoms_in_delta?( other, position_tolerance )
177
- return false unless Mapping::map?(@atoms, other.atoms ){ |i,j| i.equal_in_delta?( j, position_tolerance ) }
178
- return true
179
- end
180
-
181
- #等価判定。
182
- #格子定数の長さの比率の許容値、格子定数の角度の許容値、原子座標の許容値。
183
- def equal_in_delta?( other, length_ratio, angle_tolerance, position_tolerance )
184
- return false unless equal_lattice_in_delta?(other, length_ratio, angle_tolerance)
185
- return false unless equal_atoms_in_delta?(other, position_tolerance)
186
- return true
187
- end
188
-
189
- #等価判定。
190
- #「==」による等価判定は実数の等価判定と同じく、基本的には使うべきではない。
191
- #しかし、これを定義しておくとテストが楽になることが多い。
192
- def ==( other )
193
- #pp axes;
194
- #pp other.axes;
195
-
196
- return false unless self.axes == other.axes #equal_in_delta( 0.0, 0.0, 0.0 ) とすると計算誤差でうまくいかないことがある。
197
- equal_atoms_in_delta?( other, 0.0 )
198
- end
199
-
200
- #2つの地点間の距離を返す。
201
- #それぞれ、内部座標 Vector3DInternal クラスインスタンスなら絶対座標に変換される。
202
- #絶対座標ならばそのまま計算する。
203
- #Vector3D Vector3DInternal 以外のクラスなら例外 Cell::TypeError を投げる。
204
- #周期性を考慮したりはしない。
205
- #周期性を考慮した距離は PeriodicCell#nearest_distance で行うべき。
206
- def distance( pos0, pos1 )
207
- if ((pos0.class != Vector3DInternal) && (pos0.class != Vector3D))
208
- raise CrystalCell::Cell::TypeError
209
- end
210
- if ((pos1.class != Vector3DInternal) && (pos1.class != Vector3D))
211
- raise CrystalCell::Cell::TypeError
144
+ end
145
+ end
146
+ results
147
+ end
148
+
149
+ #他のセルと格子定数が等価であれば true を、そうでなければ false を返す。
150
+ #other: 他のセル
151
+ #length_ratio: 長さ(a, b, c) の許容値を比で指定
152
+ #angle_tolerance: 角度(alpha, beta, gamma) の許容値を角度の値で指定
153
+ def equal_lattice_in_delta?( other, length_ratio, angle_tolerance )
154
+ @axes.equal_in_delta?(
155
+ CrystalCell::LatticeAxes.new( other.axes.to_a ), length_ratio, angle_tolerance
156
+ )
157
+ end
158
+
159
+ #含まれる全原子が等価比較で一対一対応が付けられれば true を返す。
160
+ #Cell に保持される順番に関係なく、等価な原子同士が一対一に対応づけられるかで
161
+ #チェックする。
162
+ def equal_atoms_in_delta?( other, position_tolerance )
163
+ return false unless Mapping::map?(@atoms, other.atoms ){ |i,j| i.equal_in_delta?( j, position_tolerance ) }
164
+ return true
165
+ end
166
+
167
+ #等価判定。
168
+ #格子定数の長さの比率の許容値、格子定数の角度の許容値、原子座標の許容値。
169
+ def equal_in_delta?( other, length_ratio, angle_tolerance, position_tolerance )
170
+ return false unless equal_lattice_in_delta?(other, length_ratio, angle_tolerance)
171
+ return false unless equal_atoms_in_delta?(other, position_tolerance)
172
+ return true
173
+ end
174
+
175
+ #等価判定。
176
+ #「==」による等価判定は実数の等価判定と同じく、基本的には使うべきではない。
177
+ #しかし、これを定義しておくとテストが楽になることが多い。
178
+ def ==( other )
179
+ #pp axes;
180
+ #pp other.axes;
181
+
182
+ return false unless self.axes == other.axes #equal_in_delta( 0.0, 0.0, 0.0 ) とすると計算誤差でうまくいかないことがある。
183
+ equal_atoms_in_delta?( other, 0.0 )
184
+ end
185
+
186
+ #2つの地点間の距離を返す。
187
+ #それぞれ、内部座標 Vector3DInternal クラスインスタンスなら絶対座標に変換される。
188
+ #絶対座標ならばそのまま計算する。
189
+ #Vector3D か Vector3DInternal 以外のクラスなら例外 Cell::TypeError を投げる。
190
+ #周期性を考慮したりはしない。
191
+ #周期性を考慮した距離は PeriodicCell#nearest_distance で行うべき。
192
+ def distance( pos0, pos1 )
193
+ if ((pos0.class != Vector3DInternal) && (pos0.class != Vector3D))
194
+ raise CrystalCell::Cell::TypeError
195
+ end
196
+ if ((pos1.class != Vector3DInternal) && (pos1.class != Vector3D))
197
+ raise CrystalCell::Cell::TypeError
198
+ end
199
+
200
+ v0 = pos0.to_v3d(@axes) if pos0.class == Vector3DInternal
201
+ v1 = pos1.to_v3d(@axes) if pos1.class == Vector3DInternal
202
+
203
+ (v0 - v1).r
204
+ end
205
+
206
+ ###Dump string in POSCAR format.
207
+ ###Argument <io> can be a file handle or nil.
208
+ ###POSCAR を作るには、元素の順番を指定する必要があるので
209
+ ###それを element_order で指定している。
210
+ ###element_order の要素と == で一致する CrystalCell::Atom instance を
211
+ ###それぞれ全て出力する。
212
+ ###e.g.,
213
+ ### cell.dump_poscar( STDOUT ) #=> output to stdout.
214
+ ### cell.dump_poscar( fileIo ) #=> output to file.
215
+ ### cell.dump_poscar( nil ) #=> return in String instance.
216
+ ### cell.dump_poscar #=> return in String instance.
217
+ ##def dump_poscar( element_order, io = nil )
218
+ ## if (io == nil)
219
+ ## return create_poscar( element_order )
220
+ ## else
221
+ ## io.puts create_poscar( element_order )
222
+ ## end
223
+ ##end
224
+
225
+ #Cell rotation.( Destructive method)
226
+ #Argument 'matrix' is 3x3 Array of float.
227
+ #This method does not modify the position to the range between 0 and 1,
228
+ #even if it was out of range.
229
+ def rotate!( matrix )
230
+ @atoms.each { |atom|
231
+ old_pos = atom.position
232
+ new_pos = [0.0, 0.0, 0.0]
233
+ 3.times do |y|
234
+ 3.times do |x|
235
+ new_pos[y] += (matrix[y][x] * old_pos[x])
212
236
  end
213
-
214
- v0 = pos0.to_v3d(@axes) if pos0.class == Vector3DInternal
215
- v1 = pos1.to_v3d(@axes) if pos1.class == Vector3DInternal
216
-
217
- (v0 - v1).r
218
- end
219
-
220
- #Dump string in POSCAR format.
221
- #Argument <io> can be a file handle or nil.
222
- #POSCAR を作るには、元素の順番を指定する必要があるので
223
- #それを element_order で指定している。
224
- #element_order の要素と == で一致する CrystalCell::Atom instance を
225
- #それぞれ全て出力する。
226
- #e.g.,
227
- # cell.dump_poscar( STDOUT ) #=> output to stdout.
228
- # cell.dump_poscar( fileIo ) #=> output to file.
229
- # cell.dump_poscar( nil ) #=> return in String instance.
230
- # cell.dump_poscar #=> return in String instance.
231
- def dump_poscar( element_order, io = nil )
232
- if (io == nil)
233
- return create_poscar( element_order )
237
+ end
238
+ atom.set_position( new_pos )
239
+ }
240
+ end
241
+
242
+ #Cell rotation.( Nondestructive method)
243
+ #Argument 'matrix' is 3x3 Array of float.
244
+ #This method does not modify the position to the range between 0 and 1,
245
+ #even if it was out of range.
246
+ def rotate( matrix )
247
+ t = Marshal.load( Marshal.dump( self ) )
248
+ t.rotate!( matrix )
249
+ return t
250
+ end
251
+
252
+ #並進移動を行う破壊的メソッド。
253
+ #ary Float 3 要素の配列。
254
+ def translate!( ary )
255
+ @atoms.each { |atom| atom.translate!( ary ) }
256
+ end
257
+
258
+ #並進移動を行う非破壊的メソッド。
259
+ #ary は Float 3 要素の配列。
260
+ def translate( ary )
261
+ t = Marshal.load( Marshal.dump( self ) )
262
+ t.translate!( ary )
263
+ return t
264
+ end
265
+
266
+ #Return arithmetic mean of atomic positions in an internal coordinates.
267
+ #Raise 'Cell::NoAtomError' if no atoms included in self.
268
+ def center_of_atoms
269
+ raise CrystalCell::Cell::NoAtomError if @atoms.size == 0
270
+
271
+ vec = Vector3DInternal[ 0.0, 0.0, 0.0 ]
272
+ @atoms.each { |i|
273
+ 3.times { |j| vec[j] += i.position[j] }
274
+ }
275
+ vec *= 1.0/ @atoms.size
276
+ end
277
+
278
+ #Calculate volume.
279
+ def calc_volume
280
+ axes = @axes.to_a.map { |i| Vector3D[*i] }
281
+ vA, vB, vC = axes[0..2]
282
+ Vector3D.scalar_triple_product( vA, vB, vC ).abs
283
+ end
284
+
285
+ #Generate a new cell with the same lattice consants,
286
+ #containing atoms of indicated elements.
287
+ #Argument 'elems' must be an array of element names.
288
+ #含まれる @atoms の順序は、保存される。元素ごとに並び換えたりしない。
289
+ #CrystalCell::Atom.element が elems の要素のどれかと完全一致しているもののみ対象となる。
290
+ #サブクラスのインスタンスで実行した場合には、
291
+ #サブクラスのインスタンスとして生成する。
292
+ def cell_of_elements( elems )
293
+ result = self.class.new( @axes )
294
+ @atoms.each do |atom|
295
+ result.add_atom(atom) if elems.include?( atom.element )
296
+ end
297
+ return result
298
+ end
299
+
300
+ #格子定数の同じ2つのセルを合わせて、全ての原子が含まれる1つのセルを返す
301
+ #非破壊的メソッド。
302
+ #2つのセルの格子定数が異なれば例外 Cell::AxesMismatchError を発生させる。
303
+ #内部的には @atoms はレシーバの @atoms のあとに引数の @atoms を追加した形になる。
304
+ #comment は空文字になる。
305
+ #原子座標の重複チェックなどは行わない。
306
+ def unite( cell )
307
+ #raise Cell::AxesMismatchError unless @axes == cell.axes
308
+ result = Marshal.load( Marshal.dump( self ) )
309
+ cell.atoms.each do |atom|
310
+ result.add_atom(atom)
311
+ end
312
+ return result
313
+ end
314
+
315
+ #任意の格子軸のベクトルを反転する破壊的メソッド。
316
+ #大まかなイメージとしては、
317
+ #格子軸の原点をセルを構成する8つの頂点のどれかに移動する操作と考えれば良い。
318
+ # ただし厳密には、格子ベクトルは LatticeAxes.new によって triangulate されるため、
319
+ # b 軸を反転させた時は a 軸も反転する。( b 軸の y成分を正にするため)
320
+ # c 軸を反転させた時は a, b 軸も反転する。( c 軸の z成分を正にするため)
321
+ #セルの形状、内部のモチーフは保存する。
322
+ #原子の絶対座標は移動せず、内部座標の表現が変わる。
323
+ #引数 axis_id は 0, 1, 2 のいずれかの値を取り、それぞれ x, y, z軸を表す。
324
+ #x, y, z軸の関係は、右手系と左手系が入れ替わる。
325
+ def inverse_axis!( axis_id )
326
+ axis_id = axis_id.to_i
327
+ raise CrystalCell::Cell::AxesRangeError if ( axis_id < 0 || 2 < axis_id )
328
+
329
+ axes = []
330
+ 3.times do |i|
331
+ if ( i == axis_id )
332
+ axes << @axes[ i ] * (-1.0)
333
+ else
334
+ axes << @axes[ i ]
335
+ end
336
+ end
337
+ @axes = CrystalCell::LatticeAxes.new( axes )
338
+
339
+ atoms = []
340
+ @atoms.each do |atom|
341
+ position = []
342
+ 3.times do |i|
343
+ if i == axis_id
344
+ position[i] = atom.position[i] * (-1)
234
345
  else
235
- io.puts create_poscar( element_order )
236
- end
237
- end
238
-
239
- #Cell rotation.( Destructive method)
240
- #Argument 'matrix' is 3x3 Array of float.
241
- #This method does not modify the position to the range between 0 and 1,
242
- #even if it was out of range.
243
- def rotate!( matrix )
244
- @atoms.each { |atom|
245
- old_pos = atom.position
246
- new_pos = [0.0, 0.0, 0.0]
247
- 3.times do |y|
248
- 3.times do |x|
249
- new_pos[y] += (matrix[y][x] * old_pos[x])
250
- end
251
- end
252
- atom.set_position( new_pos )
253
- }
254
- end
255
-
256
- #Cell rotation.( Nondestructive method)
257
- #Argument 'matrix' is 3x3 Array of float.
258
- #This method does not modify the position to the range between 0 and 1,
259
- #even if it was out of range.
260
- def rotate( matrix )
261
- t = Marshal.load( Marshal.dump( self ) )
262
- t.rotate!( matrix )
263
- return t
264
- end
265
-
266
- #並進移動を行う破壊的メソッド。
267
- #ary は Float 3 要素の配列。
268
- def translate!( ary )
269
- @atoms.each { |atom| atom.translate!( ary ) }
270
- end
271
-
272
- #並進移動を行う非破壊的メソッド。
273
- #ary は Float 3 要素の配列。
274
- def translate( ary )
275
- t = Marshal.load( Marshal.dump( self ) )
276
- t.translate!( ary )
277
- return t
278
- end
279
-
280
- #Return arithmetic mean of atomic positions in an internal coordinates.
281
- #Raise 'Cell::NoAtomError' if no atoms included in self.
282
- def center_of_atoms
283
- raise CrystalCell::Cell::NoAtomError if @atoms.size == 0
284
-
285
- vec = Vector3DInternal[ 0.0, 0.0, 0.0 ]
286
- @atoms.each { |i|
287
- 3.times { |j| vec[j] += i.position[j] }
288
- }
289
- vec *= 1.0/ @atoms.size
290
- end
291
-
292
- #Calculate volume.
293
- def calc_volume
294
- axes = @axes.to_a.map { |i| Vector3D[*i] }
295
- vA, vB, vC = axes[0..2]
296
- Vector3D.scalar_triple_product( vA, vB, vC ).abs
297
- end
298
-
299
- #Generate a new cell with the same lattice consants,
300
- #containing atoms of indicated elements.
301
- #Argument 'elems' must be an array of element names.
302
- #含まれる @atoms の順序は、保存される。元素ごとに並び換えたりしない。
303
- #CrystalCell::Atom.element が elems の要素のどれかと完全一致しているもののみ対象となる。
304
- #サブクラスのインスタンスで実行した場合には、
305
- #サブクラスのインスタンスとして生成する。
306
- def cell_of_elements( elems )
307
- result = self.class.new( @axes )
308
- @atoms.each do |atom|
309
- result.add_atom(atom) if elems.include?( atom.element )
346
+ position[i] = atom.position[i]
310
347
  end
311
- return result
312
- end
313
-
314
- #格子定数の同じ2つのセルを合わせて、全ての原子が含まれる1つのセルを返す
315
- #非破壊的メソッド。
316
- #2つのセルの格子定数が異なれば例外 Cell::AxesMismatchError を発生させる。
317
- #内部的には @atoms はレシーバの @atoms のあとに引数の @atoms を追加した形になる。
318
- #comment は空文字になる。
319
- #原子座標の重複チェックなどは行わない。
320
- def unite( cell )
321
- #raise Cell::AxesMismatchError unless @axes == cell.axes
322
- result = Marshal.load( Marshal.dump( self ) )
323
- cell.atoms.each do |atom|
324
- result.add_atom(atom)
348
+ end
349
+ atom.position = Vector3DInternal[*position]
350
+ end
351
+ end
352
+
353
+ #inverse_axis! の非破壊版。
354
+ def inverse_axis( axis_id )
355
+ result = Marshal.load( Marshal.dump( self ) )
356
+ result.inverse_axis!( axis_id )
357
+ return result
358
+ end
359
+
360
+ #2つの格子ベクトルを交換する破壊的メソッド。
361
+ #Argument 'axis_ids' must have 2 items of integer.
362
+ #0, 1, and 2 mean x, y, and z axes, respectively.
363
+ #この範囲の整数でなければ例外 Cell::AxesRangeError.
364
+ #axis_ids に含まれる 2つの数字が同じならば
365
+ #例外 Cell::SameAxesError.
366
+ def exchange_axes!( axis_ids )
367
+ raise ArgumentError if axis_ids.size != 2
368
+ axis_ids.each{ |i| raise AxesRangeError if ( i < 0 || 2 < i ) }
369
+ raise CrystalCell::Cell::SameAxesError if ( axis_ids[0] == axis_ids[1] )
370
+
371
+ #格子定数を交換。
372
+ axes = @axes.axes
373
+ axes[ axis_ids[0]], axes[ axis_ids[1]] = axes[ axis_ids[1]], axes[ axis_ids[0]]
374
+ @axes = CrystalCell::LatticeAxes.new( axes )
375
+
376
+ #内部座標を交換。
377
+ new_atoms = []
378
+ @atoms.each do |atom|
379
+ new_pos = atom.position
380
+ new_pos[ axis_ids[0]], new_pos[ axis_ids[1]] =
381
+ new_pos[ axis_ids[1]], new_pos[ axis_ids[0]]
382
+ new_atoms << CrystalCell::Atom.new( atom.element, new_pos, atom.name, atom.movable_flags )
383
+ end
384
+ end
385
+
386
+ #exchange_axes! の非破壊版。
387
+ def exchange_axes( axis_ids )
388
+ result = Marshal.load( Marshal.dump( self ) )
389
+ result.exchange_axes!( axis_ids )
390
+ return result
391
+ end
392
+
393
+ #鏡像となるセルに変換する破壊的メソッド。
394
+ def reflect!
395
+ axes = @axes.to_a
396
+ axes[0][0] *= -1
397
+ @axes = CrystalCell::LatticeAxes.new( axes )
398
+ end
399
+
400
+ #鏡像となるセルに変換する非破壊的メソッド。
401
+ def reflect
402
+ result = Marshal.load( Marshal.dump( self ) )
403
+ result.reflect!
404
+ return result
405
+ end
406
+
407
+ #rotation と translation からなる操作(e.g., 対称操作)
408
+ #を加えたセルを返す。
409
+ def operate(rotation, translation)
410
+ rotation = Matrix[*rotation]
411
+ translation = translation.to_v3d
412
+ new_atoms = atoms.map do |atom|
413
+ position = atom.position.to_v3d([
414
+ [1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0],
415
+ ])
416
+ new_pos = (rotation * position + translation).to_a.to_v3di
417
+ CrystalCell::Atom.new(atom.element, new_pos, atom.name)
418
+ end
419
+ CrystalCell::Cell.new(@axes, new_atoms)
420
+ end
421
+
422
+ #Return information of axes symmetry.
423
+ #E.g.,
424
+ # [true , true , true ] when a = b = c, like cubic
425
+ # [true , false, false] when a = b != c, like hexagonal, trigonal, tetragonal
426
+ # [false, true , false] (same as above)
427
+ # [false, false, true ] (same as above)
428
+ # [false, false, false] when a != b != c, like triclinic, monoclinic, orthorhombic
429
+ def axis_independencies(symprec, angle_tolerance)
430
+ rotations = symmetry_operations(symprec, angle_tolerance).map {|oper| oper[:rotation]}
431
+
432
+ results = [true, true, true]
433
+ rotations.each do |rot|
434
+ 3.times do |i|
435
+ 3.times do |j|
436
+ next if rot[i][j] == 0
437
+ next if i == j
438
+ results[i] = false
439
+ results[j] = false
325
440
  end
326
- return result
441
+ end
327
442
  end
443
+ return results
444
+ end
328
445
 
329
- #任意の格子軸のベクトルを反転する破壊的メソッド。
330
- #大まかなイメージとしては、
331
- #格子軸の原点をセルを構成する8つの頂点のどれかに移動する操作と考えれば良い。
332
- # ただし厳密には、格子ベクトルは LatticeAxes.new によって triangulate されるため、
333
- # b 軸を反転させた時は a 軸も反転する。( b 軸の y成分を正にするため)
334
- # c 軸を反転させた時は a, b 軸も反転する。( c 軸の z成分を正にするため)
335
- #セルの形状、内部のモチーフは保存する。
336
- #原子の絶対座標は移動せず、内部座標の表現が変わる。
337
- #引数 axis_id は 0, 1, 2 のいずれかの値を取り、それぞれ x, y, z軸を表す。
338
- #x, y, z軸の関係は、右手系と左手系が入れ替わる。
339
- def inverse_axis!( axis_id )
340
- axis_id = axis_id.to_i
341
- raise CrystalCell::Cell::AxesRangeError if ( axis_id < 0 || 2 < axis_id )
342
-
343
- axes = []
344
- 3.times do |i|
345
- if ( i == axis_id )
346
- axes << @axes[ i ] * (-1.0)
347
- else
348
- axes << @axes[ i ]
349
- end
350
- end
351
- @axes = CrystalCell::LatticeAxes.new( axes )
352
-
353
- atoms = []
354
- @atoms.each do |atom|
355
- position = []
356
- 3.times do |i|
357
- if i == axis_id
358
- position[i] = atom.position[i] * (-1)
359
- else
360
- position[i] = atom.position[i]
361
- end
362
- end
363
- atom.position = Vector3DInternal[*position]
364
- end
365
- end
446
+ private
366
447
 
367
- #def inverse_axis!( axis_id )
368
- #axis_id = axis_id.to_i
369
- #raise Cell::AxesRangeError if ( axis_id < 0 || 2 < axis_id )
370
-
371
- #axes = []
372
- #3.times do |i|
373
- # if ( i == axis_id )
374
- # axes << @axes[ i ] * (-1.0)
375
- # else
376
- # axes << @axes[ i ]
377
- # end
378
- #end
379
- #@axes = CrystalCell::LatticeAxes.new( axes )
380
-
381
- #atoms = []
382
- #@atoms.each do |atom|
383
- # position = []
384
- # 3.times do |i|
385
- # if i == axis_id
386
- # position[i] = atom.position[i] * (-1)
387
- # else
388
- # position[i] = atom.position[i]
389
- # end
390
- # end
391
- # atom.position
392
- # atoms << CrystalCell::Atom.new( atom.element, position, atom.name, atom.movable_flags )
393
- #end
394
- #@atoms = atoms
448
+ #Return rotations and translation of symmetry operations.
449
+ def symmetry_operations(symprec, angle_tolerance)
450
+ #begin
451
+ # require "getspg.so"
452
+ #rescue LoadError
453
+ # raise LoadError,
454
+ # "LoadError: 'spglib' seems not to be installed into the system."
395
455
  #end
396
456
 
397
- #inverse_axis! の非破壊版。
398
- def inverse_axis( axis_id )
399
- result = Marshal.load( Marshal.dump( self ) )
400
- result.inverse_axis!( axis_id )
401
- return result
402
- end
403
-
404
- #2つの格子ベクトルを交換する破壊的メソッド。
405
- #Argument 'axis_ids' must have 2 items of integer.
406
- #0, 1, and 2 mean x, y, and z axes, respectively.
407
- #この範囲の整数でなければ例外 Cell::AxesRangeError.
408
- #axis_ids に含まれる 2つの数字が同じならば
409
- #例外 Cell::SameAxesError.
410
- def exchange_axes!( axis_ids )
411
- raise ArgumentError if axis_ids.size != 2
412
- axis_ids.each{ |i| raise AxesRangeError if ( i < 0 || 2 < i ) }
413
- raise CrystalCell::Cell::SameAxesError if ( axis_ids[0] == axis_ids[1] )
414
-
415
- #格子定数を交換。
416
- axes = @axes.axes
417
- axes[ axis_ids[0]], axes[ axis_ids[1]] = axes[ axis_ids[1]], axes[ axis_ids[0]]
418
- @axes = CrystalCell::LatticeAxes.new( axes )
419
-
420
- #内部座標を交換。
421
- new_atoms = []
422
- @atoms.each do |atom|
423
- new_pos = atom.position
424
- new_pos[ axis_ids[0]], new_pos[ axis_ids[1]] =
425
- new_pos[ axis_ids[1]], new_pos[ axis_ids[0]]
426
- new_atoms << CrystalCell::Atom.new( atom.element, new_pos, atom.name, atom.movable_flags )
427
- end
428
- end
429
-
430
- #exchange_axes! の非破壊版。
431
- def exchange_axes( axis_ids )
432
- result = Marshal.load( Marshal.dump( self ) )
433
- result.exchange_axes!( axis_ids )
434
- return result
435
- end
436
-
437
- #鏡像となるセルに変換する破壊的メソッド。
438
- def reflect!
439
- axes = @axes.to_a
440
- axes[0][0] *= -1
441
- @axes = CrystalCell::LatticeAxes.new( axes )
442
- end
443
-
444
- #鏡像となるセルに変換する非破壊的メソッド。
445
- def reflect
446
- result = Marshal.load( Marshal.dump( self ) )
447
- result.reflect!
448
- return result
449
- end
450
-
451
- #rotation translation からなる操作(e.g., 対称操作)
452
- #を加えたセルを返す。
453
- def operate(rotation, translation)
454
- rotation = Matrix[*rotation]
455
- translation = translation.to_v3d
456
- new_atoms = atoms.map do |atom|
457
- position = atom.position.to_v3d([
458
- [1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0],
459
- ])
460
- new_pos = (rotation * position + translation).to_a.to_v3di
461
- CrystalCell::Atom.new(atom.element, new_pos, atom.name)
457
+ unless defined? Getspg
458
+ raise NoSpglibError, "symmetry_operations() is called without spglib."
459
+ end
460
+
461
+ #pp lattice # => [[2.0, 0.0, 0.0], [1.2246063538223773e-16, 2.0, 0.0], [1.2246063538223773e-16, 1.2246063538223773e-16, 2.0]]
462
+ ##vasp の lattice 行と比べて転置しているのに注意。
463
+ #pp position #=>[[0.0, 0.0, 0.0], [0.5, 0.0, 0.0], [0.5, 0.5, 0.0], [0.5, 0.5, 0.5]]
464
+ #pp types #=>[1, 2, 3, 3]
465
+ #pp symprec #=>1.0e-05
466
+ #pp angle_tolerance #=>-1.0
467
+ axes_t = @axes.to_a.transpose
468
+
469
+ poss = positions.map {|pos| pos.to_a}
470
+
471
+ table = {}
472
+ types = elements.map do |elem|
473
+ table[elem] = ((table.size) +1) unless table.keys.include? elem
474
+ table[elem]
475
+ end
476
+
477
+ #pp axes_t, poss, types, symprec, angle_tolerance
478
+
479
+ spgnum, spg, hallnum, hall_symbol, t_mat, o_shift,
480
+ rotations, translations, wyckoffs =
481
+ #include Getspg
482
+ #pp Getspg.methods.sort
483
+ #Getspg::get_dataset(axes_t, poss, types, symprec, angle_tolerance)
484
+ get_dataset(axes_t, poss, types, symprec, angle_tolerance)
485
+
486
+ results = []
487
+ rotations.size.times do |index|
488
+ results << {
489
+ :rotation => rotations[index],
490
+ :translation => translations[index]
491
+ }
492
+ end
493
+ return results
494
+ end
495
+
496
+ #POSCAR の内容の文字列を生成。
497
+ #文字列の配列ではなく、改行文字を含む1つの文字列である点に注意。
498
+ #
499
+ #VASP の挙動として、Selective dynamics 指定ありの時に
500
+ #原子に T or F 指定していなかったり 3要素に足りなかったりすれば、
501
+ #error となって実行されない。
502
+ #なので dump_poscar では Selective dynamics 指定が必要な時には
503
+ #全ての原子に T/F を記述する。
504
+ #POSCAR から生成された Cell の場合は Selective dynamics がついていれば
505
+ #全ての原子に 3つの T/F が付いていることを前提としても良いだろう。
506
+ #原子を追加するとかで、一部の原子の movable_flags nil になっているときは、
507
+ #デフォルト値として [ true, true, true ] を入れることにする。
508
+ #nil ならば false を連想すると思うが、敢えて true で埋めている理由は、
509
+ #Selective dynamics をつけていない状態で VASP は全方向に緩和する、
510
+ #すなわち T T T と指定したことと同じになっているから。
511
+ #換言すればこのデフォルト値の設定は VASP に合わせた仕様ということになる。
512
+ #VASP に由来する仕様が Cell クラスに持ち込まれていることになるが、
513
+ #VASP へのインターフェイスである POSCAR ファイルへの書き出しに限定されるので
514
+ #他への影響はほとんどなく、気にしなくて良いだろう。
515
+ def create_poscar( element_order )
516
+ #element_order elements が一対一対応していなければ raise
517
+ raise "Cell::create_poscar, element_order mismatches to elements." if (! Mapping::map?( elements.uniq, element_order ){ |i, j| i == j } )
518
+
519
+ results = []
520
+ results << @comment
521
+ results << "1.0" #scale
522
+ 3.times do |i|
523
+ results << sprintf( "%20.14f %20.14f %20.14f", @axes[i][0], @axes[i][1], @axes[i][2]
524
+ )
525
+ end
526
+
527
+ ##collect information
528
+ elem_list = Hash.new
529
+ element_order.each do |elem|
530
+ elem_list[ elem ] = @atoms.select{ |atom| atom.element == elem }
531
+ end
532
+
533
+ ##element symbols
534
+ results << " " + element_order.join(" ")
535
+
536
+ ##numbers of element atoms
537
+ tmp = ''
538
+ element_order.each do |elem|
539
+ tmp += " #{elem_list[elem].size.to_s}"
540
+ end
541
+ results << tmp
542
+
543
+ ##Selective dynamics
544
+ ##どれか1つでも getMovableFlag が真であれば Selective dynamics をオンにする
545
+ selective_dynamics = false
546
+ @atoms.each do |atom|
547
+ if atom.movable_flags
548
+ selective_dynamics = true
549
+ results << "Selective dynamics"
550
+ break
551
+ end
552
+ end
553
+
554
+ element_order.each do |elem|
555
+ elem_list[ elem ].each do |atom|
556
+ if atom.movable_flags
557
+ selective_dynamics = true
558
+ break
462
559
  end
463
- CrystalCell::Cell.new(@axes, new_atoms)
464
- end
465
-
466
- #Return information of axes symmetry.
467
- #E.g.,
468
- # [true , true , true ] when a = b = c, like cubic
469
- # [true , false, false] when a = b != c, like hexagonal, trigonal, tetragonal
470
- # [false, true , false] (same as above)
471
- # [false, false, true ] (same as above)
472
- # [false, false, false] when a != b != c, like triclinic, monoclinic, orthorhombic
473
- def axis_independencies(symprec, angle_tolerance)
474
- rotations = symmetry_operations(symprec, angle_tolerance).map {|oper| oper[:rotation]}
475
-
476
- results = [true, true, true]
477
- rotations.each do |rot|
478
- 3.times do |i|
479
- 3.times do |j|
480
- next if rot[i][j] == 0
481
- next if i == j
482
- results[i] = false
483
- results[j] = false
484
- end
560
+ end
561
+ break if selective_dynamics
562
+ end
563
+
564
+ results << "Direct" #now, Direct only
565
+
566
+ ##positions of atoms
567
+ element_order.each do |elem|
568
+ elem_list[ elem ].each do |atom|
569
+ tmp = sprintf( "%20.14f %20.14f %20.14f", * atom.position )
570
+ if selective_dynamics
571
+ if atom.movable_flags == nil
572
+ tmp += " T T T"
573
+ else
574
+ atom.movable_flags.each do |mov|
575
+ ( mov == true ) ? tmp += " T" : tmp += " F"
485
576
  end
486
- end
487
- return results
488
- end
489
-
490
- private
491
-
492
- #Return rotations and translation of symmetry operations.
493
- def symmetry_operations(symprec, angle_tolerance)
494
- #begin
495
- # require "getspg.so"
496
- #rescue LoadError
497
- # raise LoadError,
498
- # "LoadError: 'spglib' seems not to be installed into the system."
499
- #end
500
-
501
- unless defined? Getspg
502
- raise NoSpglibError, "symmetry_operations() is called without spglib."
503
- end
504
-
505
- #pp lattice # => [[2.0, 0.0, 0.0], [1.2246063538223773e-16, 2.0, 0.0], [1.2246063538223773e-16, 1.2246063538223773e-16, 2.0]]
506
- ##vasp の lattice 行と比べて転置しているのに注意。
507
- #pp position #=>[[0.0, 0.0, 0.0], [0.5, 0.0, 0.0], [0.5, 0.5, 0.0], [0.5, 0.5, 0.5]]
508
- #pp types #=>[1, 2, 3, 3]
509
- #pp symprec #=>1.0e-05
510
- #pp angle_tolerance #=>-1.0
511
- axes_t = @axes.to_a.transpose
512
-
513
- poss = positions.map {|pos| pos.to_a}
514
-
515
- table = {}
516
- types = elements.map do |elem|
517
- table[elem] = ((table.size) +1) unless table.keys.include? elem
518
- table[elem]
519
- end
520
-
521
- #pp axes_t, poss, types, symprec, angle_tolerance
522
-
523
- spgnum, spg, hallnum, hall_symbol, t_mat, o_shift,
524
- rotations, translations, wyckoffs =
525
- #include Getspg
526
- #pp Getspg.methods.sort
527
- #Getspg::get_dataset(axes_t, poss, types, symprec, angle_tolerance)
528
- get_dataset(axes_t, poss, types, symprec, angle_tolerance)
529
-
530
- results = []
531
- rotations.size.times do |index|
532
- results << {
533
- :rotation => rotations[index],
534
- :translation => translations[index]
535
- }
536
- end
537
- return results
538
- end
539
-
540
- #POSCAR の内容の文字列を生成。
541
- #文字列の配列ではなく、改行文字を含む1つの文字列である点に注意。
542
- #
543
- #VASP の挙動として、Selective dynamics 指定ありの時に
544
- #原子に T or F 指定していなかったり 3要素に足りなかったりすれば、
545
- #error となって実行されない。
546
- #なので dump_poscar では Selective dynamics 指定が必要な時には
547
- #全ての原子に T/F を記述する。
548
- #POSCAR から生成された Cell の場合は Selective dynamics がついていれば
549
- #全ての原子に 3つの T/F が付いていることを前提としても良いだろう。
550
- #原子を追加するとかで、一部の原子の movable_flags が nil になっているときは、
551
- #デフォルト値として [ true, true, true ] を入れることにする。
552
- #nil ならば false を連想すると思うが、敢えて true で埋めている理由は、
553
- #Selective dynamics をつけていない状態で VASP は全方向に緩和する、
554
- #すなわち T T T と指定したことと同じになっているから。
555
- #換言すればこのデフォルト値の設定は VASP に合わせた仕様ということになる。
556
- #VASP に由来する仕様が Cell クラスに持ち込まれていることになるが、
557
- #VASP へのインターフェイスである POSCAR ファイルへの書き出しに限定されるので
558
- #他への影響はほとんどなく、気にしなくて良いだろう。
559
- def create_poscar( element_order )
560
- #element_order と elements が一対一対応していなければ raise
561
- raise "Cell::create_poscar, element_order mismatches to elements." if (! Mapping::map?( elements.uniq, element_order ){ |i, j| i == j } )
562
-
563
- results = []
564
- results << @comment
565
- results << "1.0" #scale
566
- 3.times do |i|
567
- results << sprintf( "%20.14f %20.14f %20.14f", @axes[i][0], @axes[i][1], @axes[i][2]
568
- )
569
- end
570
-
571
- ##collect information
572
- elem_list = Hash.new
573
- element_order.each do |elem|
574
- elem_list[ elem ] = @atoms.select{ |atom| atom.element == elem }
575
- end
576
-
577
- ##element symbols
578
- results << " " + element_order.join(" ")
579
-
580
- ##numbers of element atoms
581
- tmp = ''
582
- element_order.each do |elem|
583
- tmp += " #{elem_list[elem].size.to_s}"
577
+ end
584
578
  end
585
579
  results << tmp
586
-
587
- ##Selective dynamics
588
- ##どれか1つでも getMovableFlag が真であれば Selective dynamics をオンにする
589
- selective_dynamics = false
590
- @atoms.each do |atom|
591
- if atom.movable_flags
592
- selective_dynamics = true
593
- results << "Selective dynamics"
594
- break
595
- end
596
- end
597
-
598
- element_order.each do |elem|
599
- elem_list[ elem ].each do |atom|
600
- if atom.movable_flags
601
- selective_dynamics = true
602
- break
603
- end
604
- end
605
- break if selective_dynamics
606
- end
607
-
608
- results << "Direct" #now, Direct only
609
-
610
- ##positions of atoms
611
- element_order.each do |elem|
612
- elem_list[ elem ].each do |atom|
613
- tmp = sprintf( "%20.14f %20.14f %20.14f", * atom.position )
614
- if selective_dynamics
615
- if atom.movable_flags == nil
616
- tmp += " T T T"
617
- else
618
- atom.movable_flags.each do |mov|
619
- ( mov == true ) ? tmp += " T" : tmp += " F"
620
- end
621
- end
622
- end
623
- results << tmp
624
- end
625
- end
626
-
627
- results.join("\n")
580
+ end
628
581
  end
629
582
 
583
+ results.join("\n")
584
+ end
585
+
630
586
  end