Accessing the source vector from VectorOperator
#6
-
I don't really get it, but I guess @renefritze knows how to deal with it: I would like to add deal.II functions in the code handling the coupling, which require a vector reference as input argument operator = VectorOperator(DealIIVectorSpace.make_array([dealii.get_solution()]))
dealii.initialize(operator.get_vector_reference) ( |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
If you take a look at the |
Beta Was this translation helpful? Give feedback.
If you take a look at the
VectorOperator
DocsYou can get a vector array from it (
as_source_array()
or range) which then is aListVectorArray
withDealIIVector
s inside whoseimpl
is then what you want I think.