1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

Add source and emField inputs to ScalarFV module

This commit is contained in:
James Harrison 2017-03-24 11:42:32 +00:00
parent ef0fe2bcc1
commit 54c10a42cc

View File

@ -15,7 +15,7 @@ TScalarFV::TScalarFV(const std::string name)
// dependencies/products ///////////////////////////////////////////////////////
std::vector<std::string> TScalarFV::getInput(void)
{
std::vector<std::string> in;
std::vector<std::string> in = {par().source, par().emField};
return in;
}