IntegralCollection#

class ansys.dpf.core.collection_base.IntegralCollection(server=None, collection=None)#

Bases: CollectionBase

Creates a collection of integral type with a list.

The collection of integral is the equivalent of an array of data sent server side. It can be used to efficiently stream large data to the server.

Parameters:

list (list[float], list[int], numpy.array) – list to transfer server side

Notes

Used by default by the 'Operator' and the``’Workflow’`` when a list is connected or returned.

Overview#

create_subtype

Must be implemented by subclasses.

get_integral_entries

Must be implemented by subclasses.

Import detail#

from ansys.dpf.core.collection_base import IntegralCollection

Method detail#

abstract IntegralCollection.create_subtype(obj_by_copy)#

Must be implemented by subclasses.

IntegralCollection.get_integral_entries()#

Must be implemented by subclasses.