I would like to add objects from one model to another. I know how to load existing osms using the code below -
# load the test model
translator = OpenStudio::OSVersion::VersionTranslator.new
path = OpenStudio::Path.new(File.dirname(__FILE__) + "/my_test_model_test_input.osm")
model = translator.loadModel(path)
assert((not model.empty?))
model = model.get
however once I load two models how can add the objects from one model to another?