Commit b774612 1 parent 19c27ea commit b774612 Copy full SHA for b774612
File tree 1 file changed +35
-0
lines changed
1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -234,6 +234,41 @@ numgrid.free_context(context)
234
234
```
235
235
236
236
237
+ ## Testing without a basis set
238
+
239
+ Sometimes you need a grid for quick testing without specifying an explicit
240
+ basis set. Here is an example for one center. Note that we only specify
241
+ one steep and one diffuse exponent which will define the radial range:
242
+
243
+ ``` python
244
+ radial_precision = 1.0e-06
245
+ min_num_angular_points = 86
246
+ max_num_angular_points = 302
247
+
248
+ num_centers = 1
249
+ center_coordinates = [
250
+ 0.0000e+00 ,
251
+ 0.0000e+00 ,
252
+ 0.0000e+00 ,
253
+ ]
254
+ center_elements = [1 ]
255
+
256
+ num_outer_centers = 0
257
+ outer_center_coordinates = []
258
+ outer_center_elements = []
259
+
260
+ num_shells = 2
261
+ shell_centers = [1 , 1 ]
262
+ shell_l_quantum_numbers = [0 , 0 ]
263
+ shell_num_primitives = [1 , 1 ]
264
+
265
+ primitive_exponents = [
266
+ 1.0e+04 ,
267
+ 1.0e-01 ,
268
+ ]
269
+ ```
270
+
271
+
237
272
## Testing the Python interface
238
273
239
274
```
You can’t perform that action at this time.
0 commit comments