Skip to content

Commit

Permalink
increase vtk plot size
Browse files Browse the repository at this point in the history
  • Loading branch information
ahurta92 committed Dec 5, 2023
1 parent 340f0f0 commit 17d4d87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/apps/molresponse/Plot_VTK.cc
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ namespace madness {
void do_response_density_vtk_plots_new(World &world, int npt_plot, double L, const Molecule &molecule,
const real_function_3d &ground_density,
const vector_real_function_3d &response_density) {
double box_size = L / 2;
double box_size = L ;
Vector<double, 3> box_lo{-box_size, -box_size, -box_size};
Vector<double, 3> box_hi{box_size, box_size, box_size};

Expand Down
2 changes: 1 addition & 1 deletion src/apps/molresponse/ResponseBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1377,7 +1377,7 @@ void ResponseBase::write_vtk(World &world) {
#endif
#if defined(MADCHEM_HAS_STD_FILESYSTEM)
auto r_matrix = to_response_matrix(Chi);
do_response_orbital_vtk_plots(world, r_params.plot_pts(), r_params.L(), molecule, ground_orbitals, r_matrix);
//do_response_orbital_vtk_plots(world, r_params.plot_pts(), r_params.L(), molecule, ground_orbitals, r_matrix);
do_response_density_vtk_plots_new(world, r_params.plot_pts(), r_params.L(), molecule, ground_density,
response_densities);
#endif
Expand Down

0 comments on commit 17d4d87

Please sign in to comment.