Skip to content

Commit

Permalink
Increase n_curve_pts to 4001
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSagan committed Aug 24, 2024
2 parents e13d72a + 44c6a9d commit 642a8c8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
16 changes: 8 additions & 8 deletions tao/code/tao_input_struct.f90
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ module tao_input_struct
real(rp) :: floor_plan_text_scale = 1.0 ! Scale used = floor_plan_text_scale * legend_text_scale
real(rp) :: lat_layout_shape_scale = 1.0
real(rp) :: lat_layout_text_scale = 1.0 ! Scale used = lat_layout_text_scale * legend_text_scale
real(rp) :: curve_legend_line_len = 30 ! Points
real(rp) :: curve_legend_text_offset = 6 ! Points
integer :: n_curve_pts = 401 ! Number of points for plotting a smooth curve
type (qp_rect_struct) :: border ! Border around plots edge of page.
real(rp) :: curve_legend_line_len = 30 ! Points
real(rp) :: curve_legend_text_offset = 6 ! Points
integer :: n_curve_pts = n_curve_pts_init$ ! Number of points for plotting a smooth curve
type (qp_rect_struct) :: border ! Border around plots edge of page.
logical :: delete_overlapping_plots = .true. ! Delete overlapping plots when a plot is placed?
logical :: draw_graph_title_suffix = .true.
end type
Expand All @@ -226,10 +226,10 @@ module tao_input_struct
real(rp) :: key_table_text_scale = 0.9 ! Relative to text_height
real(rp) :: floor_plan_shape_scale = 1.0
real(rp) :: lat_layout_shape_scale = 1.0
real(rp) :: curve_legend_line_len = 30 ! Points
real(rp) :: curve_legend_text_offset = 6 ! Points
integer :: n_curve_pts = 401 ! Number of points for plotting a smooth curve
type (qp_rect_struct) :: border ! Border around plots edge of page.
real(rp) :: curve_legend_line_len = 30 ! Points
real(rp) :: curve_legend_text_offset = 6 ! Points
integer :: n_curve_pts = n_curve_pts_init$ ! Number of points for plotting a smooth curve
type (qp_rect_struct) :: border ! Border around plots edge of page.
logical :: delete_overlapping_plots = .true. ! Delete overlapping plots when a plot is placed?
logical :: draw_graph_title_suffix = .true.
end type
Expand Down
10 changes: 6 additions & 4 deletions tao/code/tao_struct.f90
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,8 @@ module tao_struct
logical :: setup_done = .false. ! Used for plot bookkeeping.
end type

integer, parameter :: n_curve_pts_init$ = 4001

! The tao_plot_page_struct defines the whole plotting window.
! Note that the qp_com structure of quick_plot also is used to hold
! plot page info.
Expand All @@ -347,11 +349,11 @@ module tao_struct
real(rp) :: curve_legend_line_len = 30 ! Points
real(rp) :: curve_legend_text_offset = 6 ! Points
real(rp) :: floor_plan_shape_scale = 1.0
real(rp) :: floor_plan_text_scale = 1.0 ! Scale used = floor_plan_text_scale * legend_text_scale
real(rp) :: floor_plan_text_scale = 1.0 ! Scale used = floor_plan_text_scale * legend_text_scale
real(rp) :: lat_layout_shape_scale = 1.0
real(rp) :: lat_layout_text_scale = 1.0 ! Scale used = lat_layout_text_scale * legend_text_scale
integer :: n_curve_pts = 4001 ! Default number of points for plotting a smooth curve.
integer :: id_window = -1 ! X window id number.
real(rp) :: lat_layout_text_scale = 1.0 ! Scale used = lat_layout_text_scale * legend_text_scale
integer :: n_curve_pts = n_curve_pts_init$ ! Default number of points for plotting a smooth curve.
integer :: id_window = -1 ! X window id number.
logical :: delete_overlapping_plots = .true. ! Delete overlapping plots when a plot is placed?
logical :: draw_graph_title_suffix = .true. ! Draw the graph title suffix?
end type
Expand Down

0 comments on commit 642a8c8

Please sign in to comment.