Module: BTAP::Geometry::Spaces

Defined in:
lib/openstudio-standards/btap/geometry.rb

Overview

This module contains helper functions that deal with Space objects.

Class Method Summary collapse

Class Method Details

.assign_spaces_to_thermal_zone(model, spaces_array, thermal_zone) ⇒ Object

to do write test.



2497
2498
2499
2500
2501
2502
2503
# File 'lib/openstudio-standards/btap/geometry.rb', line 2497

def self.assign_spaces_to_thermal_zone(model,spaces_array,thermal_zone)
  spaces_array = BTAP::Common::validate_array(model,spaces_array,"Space")
  thermal_zone = BTAP::Common::validate_array(model,thermal_zone,"ThermalZone")[0]
  spaces_array.each do|space|
    space.setThermalZone(thermal_zone)
  end
end

.filter_core_spaces(model, spaces_array) ⇒ Object

This method will filter an array of spaces that have no external wall passed floors. Note: if you wish to avoid to create an array of spaces, simply put the space variable in [] brackets Ex: get_all_surfaces_from_spaces( [space1,space2] )

Parameters:

  • spaces_array

    an array of type [OpenStudio::Model::Space]

Returns:

  • an array of spaces.



2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
# File 'lib/openstudio-standards/btap/geometry.rb', line 2473

def self.filter_core_spaces(model,spaces_array)
  spaces_array = BTAP::Common::validate_array(model,spaces_array,"Space")
  array = Array.new()
  spaces_array.each do |space|
    unless space.is_a_perimeter_space?()
      array.push(space)
    end
  end
  return array
end

.filter_perimeter_spaces(model, spaces_array) ⇒ Object

This method will filter an array of spaces that have an external wall passed floors. Note: if you wish to avoid to create an array of spaces, simply put the space variable in [] brackets Ex: get_all_surfaces_from_spaces( [space1,space2] )

Parameters:

  • spaces_array

    an array of type [OpenStudio::Model::Space]

Returns:

  • an array of spaces.



2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
# File 'lib/openstudio-standards/btap/geometry.rb', line 2456

def self.filter_perimeter_spaces(model, spaces_array)
  spaces_array = BTAP::Common::validate_array(model,spaces_array,"Space")
  array = Array.new()
  spaces_array.each do |space|
    if space.is_a_perimeter_space?()
      array.push(space)
    end
  end
  return array
end

.filter_spaces_by_space_types(model, spaces_array, spacetype_array) ⇒ Object



2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
# File 'lib/openstudio-standards/btap/geometry.rb', line 2485

def self.filter_spaces_by_space_types(model,spaces_array,spacetype_array)
  spaces_array = BTAP::Common::validate_array(model,spaces_array,"Space")
  spacetype_array = BTAP::Common::validate_array(model,spacetype_array,"SpaceType")
  #validate space array
  returnarray = Array.new()
  spaces_array.each do |space|
    returnarray << spacetype_array.include?(space.spaceType())
  end
  return returnarray
end

.get_space_placement(space) ⇒ Object

This method will return the horizontal placement type. (N,S,W,E,C) In the case of a corner, it will take whatever surface area it faces is the largest. It will also return the top, bottom or middle conditions.



2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
# File 'lib/openstudio-standards/btap/geometry.rb', line 2288

def self.get_space_placement(space)
  horizontal_placement = nil
  vertical_placement = nil
  
  #get all exterior surfaces. 
  surfaces =  BTAP::Geometry::Surfaces::filter_by_boundary_condition(space.surfaces, ["Outdoors",
      "Ground",
      "GroundFCfactorMethod",
      "GroundSlabPreprocessorAverage",
      "GroundSlabPreprocessorCore",
      "GroundSlabPreprocessorPerimeter",
      "GroundBasementPreprocessorAverageWall",
      "GroundBasementPreprocessorAverageFloor",
      "GroundBasementPreprocessorUpperWall",
      "GroundBasementPreprocessorLowerWall"])

  #exterior Surfaces
  ext_wall_surfaces = BTAP::Geometry::Surfaces::filter_by_surface_types(surfaces,["Wall"])
  ext_bottom_surface = BTAP::Geometry::Surfaces::filter_by_surface_types(surfaces,["Floor"])
  ext_top_surface = BTAP::Geometry::Surfaces::filter_by_surface_types(surfaces,["RoofCeiling"])
  
  #Interior Surfaces..if needed....
  internal_surfaces =  BTAP::Geometry::Surfaces::filter_by_boundary_condition( space.surfaces, ["Surface"] )
  int_wall_surfaces = BTAP::Geometry::Surfaces::filter_by_surface_types( internal_surfaces,["Wall"] )
  int_bottom_surface = BTAP::Geometry::Surfaces::filter_by_surface_types( internal_surfaces,["Floor"] )
  int_top_surface = BTAP::Geometry::Surfaces::filter_by_surface_types( internal_surfaces,["RoofCeiling"] )
  
  
  vertical_placement = "NA"
  #determine if space is a top or bottom, both or middle space. 
  if ext_bottom_surface.size > 0 and ext_top_surface.size > 0 and int_bottom_surface.size == 0 and int_top_surface.size == 0
    vertical_placement = "single_story_space"
  elsif  int_bottom_surface.size > 0 and ext_top_surface.size > 0 and int_bottom_surface.size > 0 
    vertical_placement = "top"
  elsif ext_bottom_surface.size > 0 and ext_top_surface.size == 0 
    vertical_placement = "bottom"
  elsif ext_bottom_surface.size == 0 and ext_top_surface.size == 0
    vertical_placement = "middle"
  end


  
  #determine if what cardinal direction has the majority of external 
  #surface area of the space. 

  walls_area_array = Array.new
  [0,1,2,3].each { |index| walls_area_array[index] = 0.0 }
  #east is defined as 315-45 degs
  BTAP::Geometry::Surfaces::filter_by_azimuth_and_tilt(ext_wall_surfaces,  0.00,   45.0, 0.00, 180.00).each do |surface|
    #          puts "northern surface found 0-46: #{surface}"
    #          puts surface.azimuth / ( Math::PI / 180.0 )
    walls_area_array[0]  = walls_area_array[0]  + surface.grossArea
  end
  BTAP::Geometry::Surfaces::filter_by_azimuth_and_tilt(ext_wall_surfaces,  315.001,   360.0, 0.00, 180.00).each do |surface|
    #          puts "northern surface found: #{surface}"
    #          puts surface.azimuth / ( Math::PI / 180.0 )
    walls_area_array[0]  = walls_area_array[0]  + surface.grossArea
  end
  
  BTAP::Geometry::Surfaces::filter_by_azimuth_and_tilt(ext_wall_surfaces,  45.001,   135.0, 0.00, 180.00).each do |surface|
    #          puts "eastern surface found: #{surface}"
    #          puts surface.azimuth / ( Math::PI / 180.0 )
    walls_area_array[1]  = walls_area_array[1]  + surface.grossArea
  end
  
  BTAP::Geometry::Surfaces::filter_by_azimuth_and_tilt(ext_wall_surfaces,  135.001,   225.0, 0.00, 180.00).each do |surface|
    #          puts "south surface found: #{surface}"
    #          puts surface.azimuth / ( Math::PI / 180.0 )
    walls_area_array[2]  = walls_area_array[2]  + surface.grossArea
  end
  
  BTAP::Geometry::Surfaces::filter_by_azimuth_and_tilt(ext_wall_surfaces,  225.001,   315.0, 0.00, 180.00).each do |surface|
    #          puts "west surface found: #{surface}"
    #          puts surface.azimuth / ( Math::PI / 180.0 )
    walls_area_array[3]  = walls_area_array[3]  + surface.grossArea
  end
  
  
  
  #find our which cardinal driection has the most exterior surface and declare it that orientation.  
  case walls_area_array.index(walls_area_array.max)
  when 0
    horizontal_placement = "north"
  when 1
    horizontal_placement = "east"
  when 2
    horizontal_placement = "south"
  when 3
    horizontal_placement = "west"
  end
  if walls_area_array.inject{|sum,x| sum + x } == 0.0
    horizontal_placement = "core"
  end
  return horizontal_placement , vertical_placement
end

.get_spaces_from_storeys(model, floors) ⇒ Array<OpenStudio::Model::Space>

This method will return a SpaceArray of surfaces that are contained within the passed floors. Note: if you wish to avoid to create an array of spaces, simply put the space variable in [] brackets Ex: get_all_surfaces_from_spaces( [space1,space2] )

Parameters:

  • model
  • floors

Returns:



2443
2444
2445
2446
2447
2448
# File 'lib/openstudio-standards/btap/geometry.rb', line 2443

def self.get_spaces_from_storeys(model,floors)
  floors = BTAP::Common::validate_array(model,floors,"BuildingStory")
  spaces = Array.new()
  floors.each { |floor| spaces.concat(floor.spaces) }
  return spaces
end

.get_surfaces_from_spaces(model, spaces_array) ⇒ Object

This method will return a Array of surfaces that are contained within the passed spaces. Note: if you wish to avoid to create an array of spaces, simply put the space variable in [] brackets Ex: get_all_surfaces_from_spaces( [space1,space2] )

Parameters:

  • spaces_array

    an array of type [OpenStudio::Model::Space]

Returns:

  • an array of surfaces contained in the passed spaces.



2432
2433
2434
# File 'lib/openstudio-standards/btap/geometry.rb', line 2432

def self.get_surfaces_from_spaces(model, spaces_array)
  BTAP::Geometry::Surfaces::get_surfaces_from_spaces(spaces_array)
end

.hide(model, space) ⇒ Object



2409
2410
2411
2412
2413
2414
2415
# File 'lib/openstudio-standards/btap/geometry.rb', line 2409

def self.hide(model,space)
  if drawing_interface = BTAP::Common::validate_array(model,space,"Space").first.drawing_interface
    if entity = drawing_interface.entity
      entity.visible = false
    end
  end
end

.is_perimeter_space?(model, space) ⇒ Boolean

Returns:

  • (Boolean)


2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
# File 'lib/openstudio-standards/btap/geometry.rb', line 2386

def self.is_perimeter_space?(model,space)
  exterior_surfaces =  BTAP::Geometry::Surfaces::filter_by_boundary_condition(space.surfaces,
    ["Outdoors",
      "Ground",
      "GroundFCfactorMethod",
      "GroundSlabPreprocessorAverage",
      "GroundSlabPreprocessorCore",
      "GroundSlabPreprocessorPerimeter",
      "GroundBasementPreprocessorAverageWall",
      "GroundBasementPreprocessorAverageFloor",
      "GroundBasementPreprocessorUpperWall",
      "GroundBasementPreprocessorLowerWall"])
  
  return BTAP::Geometry::Surfaces::filter_by_surface_types(exterior_surfaces,["Wall"]).size > 0

end

.show(model, space) ⇒ Object



2402
2403
2404
2405
2406
2407
2408
# File 'lib/openstudio-standards/btap/geometry.rb', line 2402

def self.show(model,space)
  if drawing_interface = BTAP::Common::validate_array(model,space,"Space").first.drawing_interface
    if entity = drawing_interface.entity
      entity.visible = true
    end
  end
end