get_output_json_filename Function

public function get_output_json_filename() result(filename)

Get the current JSON output filename

Arguments

None

Return Value character(len=256)


Called by

proc~~get_output_json_filename~~CalledByGraph proc~get_output_json_filename get_output_json_filename proc~run_multi_molecule_calculations run_multi_molecule_calculations proc~run_multi_molecule_calculations->proc~get_output_json_filename proc~run_calculation run_calculation proc~run_multi_molecule_calculations->proc~run_calculation proc~write_gmbe_pie_json_impl write_gmbe_pie_json_impl proc~write_gmbe_pie_json_impl->proc~get_output_json_filename proc~write_mbe_breakdown_json_impl write_mbe_breakdown_json_impl proc~write_mbe_breakdown_json_impl->proc~get_output_json_filename proc~write_unfragmented_json_impl write_unfragmented_json_impl proc~write_unfragmented_json_impl->proc~get_output_json_filename proc~write_vibrational_json_impl write_vibrational_json_impl proc~write_vibrational_json_impl->proc~get_output_json_filename proc~write_json_output write_json_output proc~write_json_output->proc~write_gmbe_pie_json_impl proc~write_json_output->proc~write_mbe_breakdown_json_impl proc~write_json_output->proc~write_unfragmented_json_impl proc~write_json_output->proc~write_vibrational_json_impl program~main main program~main->proc~run_multi_molecule_calculations program~main->proc~run_calculation proc~run_calculation->proc~write_json_output proc~compute_energy_and_forces compute_energy_and_forces proc~compute_energy_and_forces->proc~run_calculation

Source Code

   function get_output_json_filename() result(filename)
      !! Get the current JSON output filename
      character(len=256) :: filename
      filename = trim(output_json_filename)
   end function get_output_json_filename