Skip to content

Commit

Permalink
reduce the box size and number of points
Browse files Browse the repository at this point in the history
  • Loading branch information
ahurta92 committed Sep 20, 2023
1 parent 8d48182 commit 5cf4157
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/apps/molresponse/Plot_VTK.cc
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ namespace madness {
const response_matrix &responseMatrix) {
// Stuff needed to plot
//
Vector<double, 3> box_lo{-L / 4, -L / 4, -L / 4};
Vector<double, 3> box_hi{L / 4, L / 4, L / 4};
Vector<double, 3> box_lo{-L / 10, -L / 10, -L / 10};
Vector<double, 3> box_hi{L / 10, L / 10, L / 10};


std::string vtk_dir = "vtk_plots";
Expand Down Expand Up @@ -159,7 +159,7 @@ namespace madness {
//
auto L_box = L / 10;
Vector<double, 3> box_lo{-L_box, -L_box, -L_box};
Vector<double, 3> box_hi{L_box , L_box, L_box};
Vector<double, 3> box_hi{L_box, L_box, L_box};


std::string vtk_dir = "vtk_plots";
Expand Down
2 changes: 1 addition & 1 deletion src/apps/molresponse/response_parameters.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ namespace madness {
initialize<std::vector<double>>("plot_cell", std::vector<double>(),
"lo-hi plot cell (default is all space)");
initialize<double>("plot_l", -1.0, "Controls the plotting box size");
initialize<size_t>("plot_pts", 81, "Controls number of points in plots");
initialize<size_t>("plot_pts", 51, "Controls number of points in plots");
initialize<bool>("plot_all_orbitals", false, "Turn on 2D plotting of response orbitals ");
initialize<size_t>("maxiter", 25, "maximum number of iterations");
initialize<double>("dconv", 1.e-4, "recommended values: 1.e-4 < dconv < 1.e-8");
Expand Down

0 comments on commit 5cf4157

Please sign in to comment.