-
Notifications
You must be signed in to change notification settings - Fork 62
Open
Description
This program uses the following virtual function:
template <int dim>
class ComputeMultiplier : public DataPostprocessor<dim>
{
private:
double p;
public:
ComputeMultiplier (double pe);
virtual
void compute_derived_quantities_scalar (
const std::vector< double > &,
const std::vector< Tensor< 1, dim > > &,
const std::vector< Tensor< 2, dim > > &,
const std::vector< Point< dim > > &,
const std::vector< Point< dim > > &,
std::vector< Vector< double > > &
) const;
virtual std::vector<std::string> get_names () const override;
virtual
std::vector<DataComponentInterpretation::DataComponentInterpretation>
get_data_component_interpretation () const;
virtual UpdateFlags get_needed_update_flags () const override;
};
But the compute_derived_quantities_scalar () function has been removed. The class here should instead derive from DataPostprocessorScalar.
Metadata
Metadata
Assignees
Labels
No labels