Physical Asset and thermal Assets

Hai everyone,
How can I get Physical Asset and thermal Assets from library.
Any node package available?

Hi @thiru2jack,

Clockwork package has Material.Assets node.

hi @thiru2jack , some reference for you;

# dynamo version - 1.3.4
import clr
clr.AddReference('RevitAPI')
from Autodesk.Revit.DB import *

clr.AddReference("RevitServices")
from RevitServices.Persistence import DocumentManager

doc = DocumentManager.Instance.CurrentDBDocument

# input
material = UnwrapElement(IN[0])
# thermal asset
thermal = doc.GetElement(material.ThermalAssetId)
# appearance asset
app = doc.GetElement(material.AppearanceAssetId)
# structural asset
struct = doc.GetElement(material.StructuralAssetId)

OUT = thermal, app, struct