Skip to content

Commit

Permalink
update heating rate code; roll back fedora image update
Browse files Browse the repository at this point in the history
  • Loading branch information
mattldawson committed Apr 5, 2024
1 parent 0902dc6 commit 7b01b79
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:39
FROM fedora:37

RUN dnf -y update \
&& dnf -y install \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.coverage
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:39
FROM fedora:37

RUN dnf -y update \
&& dnf -y install \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.docs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:39
FROM fedora:37

RUN dnf -y update \
&& dnf -y install \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.memcheck
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:39
FROM fedora:37

RUN dnf -y update \
&& dnf -y install \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.mpi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:39
FROM fedora:37

RUN dnf -y update \
&& dnf install -y sudo \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.mpi.memcheck
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:39
FROM fedora:37

RUN dnf -y update \
&& dnf install -y sudo \
Expand Down
2 changes: 0 additions & 2 deletions src/heating_rates.F90
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ function constructor( config, grids, profiles ) result( this )
type(config_t) :: reaction_set, reaction_config, heating_config
type(config_t) :: cross_section_config
class(iterator_t), pointer :: iter
type(string_t) :: label
type(string_t) :: required_keys(1), optional_keys(1)
logical :: found, do_apply_bands
integer :: n_hr, i_hr, n_O2, i_O2
Expand Down Expand Up @@ -147,7 +146,6 @@ function constructor( config, grids, profiles ) result( this )
call reaction_config%get( "heating", heating_config, Iam, found = found )
if( found ) then
i_hr = i_hr + 1
call reaction_config%get( "name", label, Iam )
this%heating_parameters_( i_hr ) = &
heating_parameters_constructor( reaction_config, grids, profiles )
call reaction_config%get( "cross section", cross_section_config, Iam )
Expand Down

0 comments on commit 7b01b79

Please sign in to comment.