Skip to content

Commit

Permalink
synch
Browse files Browse the repository at this point in the history
  • Loading branch information
jimlutsko committed Aug 30, 2024
1 parent a739dcb commit 655b4f5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/DFT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,14 @@ void DFT::matrix_dot_v_intern(const vector<DFT_FFT> &v_in, vector<DFT_Vec> &resu
for(auto &interaction: DFT::Interactions_)
interaction->add_second_derivative(v,result);

//EOS
for(int s=0;s<allSpecies_.size();s++)
{
FMT_Species_EOS *species = dynamic_cast<FMT_Species_EOS*>(allSpecies_[s]);
if(species)
species->add_second_derivative(v[s],result[s],fmt_);
}

if (is_matrix_in_alias_coordinates())
for(int s=0;s<allSpecies_.size();s++)
{
Expand Down

0 comments on commit 655b4f5

Please sign in to comment.