@@ -202,8 +202,6 @@ As an example let us generate a grid for the water molecule:
202202 {0 : 0.122 , 1 : 0.727 }, # H
203203 ]
204204
205- hardness = 3
206-
207205 for center_index in range (len (center_coordinates_bohr)):
208206 # atom grid using explicit basis set parameters
209207 coordinates, weights = numgrid.atom_grid(
@@ -215,7 +213,7 @@ As an example let us generate a grid for the water molecule:
215213 proton_charges,
216214 center_index,
217215 center_coordinates_bohr,
218- hardness,
216+ hardness = 3 ,
219217 )
220218
221219 # atom grid using basis set name
@@ -228,32 +226,29 @@ As an example let us generate a grid for the water molecule:
228226 proton_charges,
229227 center_index,
230228 center_coordinates_bohr,
231- hardness,
229+ hardness = 3 ,
232230 )
233231
234- # radial grid using explicit basis set parameters
235- radii, weights = numgrid.radial_grid(
236- alpha_min[center_index],
237- alpha_max[center_index],
238- radial_precision,
239- proton_charges[center_index],
240- )
241-
242- # angular grid with 14 points
243- coordinates, weights = numgrid.angular_grid(14 )
244-
245-
246- Unreleased functionality
247- ------------------------
248-
249- These will be released soon but I need to think carefully about the API.
250-
251- .. code :: python
252-
253- import numgrid
232+ # radial grid (LMG) using explicit basis set parameters
233+ radii, weights = numgrid.radial_grid_lmg(
234+ alpha_min = {0 : 0.3023 , 1 : 0.2753 , 2 : 1.185 },
235+ alpha_max = 11720.0 ,
236+ radial_precision = 1.0e-12 ,
237+ proton_charge = 8 ,
238+ )
239+
240+ # radial grid (LMG) using basis set name
241+ radii, weights = numgrid.radial_grid_lmg_bse(
242+ basis_set = " cc-pVDZ" ,
243+ radial_precision = 1.0e-12 ,
244+ proton_charge = 8 ,
245+ )
254246
255247 # radial grid with 100 points using Krack-Koster approach
256- radii, weights = numgrid.radial_grid_kk(100 )
248+ radii, weights = numgrid.radial_grid_kk(num_points = 100 )
249+
250+ # angular grid with 14 points
251+ coordinates, weights = numgrid.angular_grid(num_points = 14 )
257252
258253
259254 Notes and recommendations
0 commit comments