Skip to content

Commit

Permalink
Anderson-Mixing variable cell implemented. I/O module modified to dis…
Browse files Browse the repository at this point in the history
…play 40 char long comments during iterations.
  • Loading branch information
akasharora123 committed Jun 2, 2018
1 parent d560150 commit 48e9b0e
Show file tree
Hide file tree
Showing 2 changed files with 314 additions and 338 deletions.
4 changes: 2 additions & 2 deletions src/io/io_mod.f
Original file line number Diff line number Diff line change
Expand Up @@ -356,15 +356,15 @@ module io_mod
character(1) :: default_mat_sym = 'N' ! normal (full matrix)
! Integer field widths for output of comments and data:
integer :: com_width = 20 ! comment field width
integer :: com_width = 40 ! comment field width
integer :: data_width = 20 ! data field width (total)
integer :: frac_width = 12 ! # digits after decimal
! Choice of format descriptor (E or F) for real numbers
character(2) :: fmt_ef = 'ES' ! must = F, E, or ES
! Output format strings for scalar variables:
character(3) :: fmt_c = 'A20' ! comment format
character(3) :: fmt_c = 'A40' ! comment format
character(3) :: fmt_i = 'I20' ! integer format
character(7) :: fmt_r = 'ES20.10' ! real format
character(3) :: fmt_l = 'L20' ! logical format
Expand Down

0 comments on commit 48e9b0e

Please sign in to comment.