You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SetFromVectorField and SetFromSTVectorField in STVector- and VectorField classes, respectively, can be improved.
Problematic parts are following
in SetFromVectorField (from 437)
SELECT TYPE (VALUE)
CLASS is (VectorField_)
tnodes = obj%domain%GetTotalNodes()
DO ii =1, tnodes
CALL VALUE%Get(VALUE=small_value, globalNode=ii)
DO jj =1, obj%spaceCompo
CALL obj%Set(VALUE=small_value(jj), globalNode=ii, scale=scale, &
& addContribution=addContribution, timeCompo=timeCompo, &
& spaceCompo=jj)
END DOEND DO
and in SetFromSTVectorField (from 629)
SELECT TYPE (VALUE)
CLASS is (STVectorField_)
tnodes = obj%domain%GetTotalNodes()
DO ii =1, tnodes
CALL VALUE%Get(VALUE=small_value, globalNode=ii, timeCompo=timeCompo)
CALL obj%Set(VALUE=small_value, globalNode=ii, scale=scale, &
& addContribution=addContribution)
END DO
The text was updated successfully, but these errors were encountered:
SetFromVectorField
andSetFromSTVectorField
in STVector- and VectorField classes, respectively, can be improved.Problematic parts are following
in SetFromVectorField (from 437)
and in SetFromSTVectorField (from 629)
The text was updated successfully, but these errors were encountered: