Skip to content

Commit

Permalink
the last of them
Browse files Browse the repository at this point in the history
  • Loading branch information
marchdf committed Jul 20, 2023
1 parent 4e08c77 commit a8dacd7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions amr-wind/boundary_conditions/BCInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ std::pair<const std::string, const std::string> BCIface::get_dirichlet_udfs()
"faces");
} else {
inflow_udf = val;
has_inflow_udf = true;
}
}
}
Expand All @@ -146,6 +147,7 @@ std::pair<const std::string, const std::string> BCIface::get_dirichlet_udfs()
"faces");
} else {
wall_udf = val;
has_wall_udf = true;
}
}
}
Expand Down
1 change: 1 addition & 0 deletions amr-wind/turbulence/LES/AMD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ namespace amr_wind {
namespace turbulence {

template <typename Transport>
// cppcheck-suppress uninitMemberVar
AMD<Transport>::AMD(CFDSim& sim)
: TurbModelBase<Transport>(sim)
, m_vel(sim.repo().get_field("velocity"))
Expand Down
1 change: 1 addition & 0 deletions amr-wind/turbulence/LES/AMDNoTherm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ namespace amr_wind {
namespace turbulence {

template <typename Transport>
// cppcheck-suppress uninitMemberVar
AMDNoTherm<Transport>::AMDNoTherm(CFDSim& sim)
: TurbModelBase<Transport>(sim)
, m_vel(sim.repo().get_field("velocity"))
Expand Down
1 change: 1 addition & 0 deletions amr-wind/turbulence/RANS/KOmegaSSTIDDES.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ template <typename Transport>
KOmegaSSTIDDES<Transport>::~KOmegaSSTIDDES() = default;

template <typename Transport>
// cppcheck-suppress uninitMemberVar
KOmegaSSTIDDES<Transport>::KOmegaSSTIDDES(CFDSim& sim)
: KOmegaSST<Transport>(sim)
, m_rans_ind(sim.repo().declare_field("rans_indicator", 1, 1, 1))
Expand Down

0 comments on commit a8dacd7

Please sign in to comment.