From 633895470988de8bec375d84d28e0f7be22a2129 Mon Sep 17 00:00:00 2001 From: cdeline Date: Tue, 10 Dec 2019 14:06:41 -0700 Subject: [PATCH] remove extraneous tutorial1 .py file --- ...Example - Fixed Tilt simple setup-Copy1.py | 305 ------------------ 1 file changed, 305 deletions(-) delete mode 100644 docs/tutorials/1 - Introductory Example - Fixed Tilt simple setup-Copy1.py diff --git a/docs/tutorials/1 - Introductory Example - Fixed Tilt simple setup-Copy1.py b/docs/tutorials/1 - Introductory Example - Fixed Tilt simple setup-Copy1.py deleted file mode 100644 index 3810ea62..00000000 --- a/docs/tutorials/1 - Introductory Example - Fixed Tilt simple setup-Copy1.py +++ /dev/null @@ -1,305 +0,0 @@ -#!/usr/bin/env python -# coding: utf-8 - -# # 1 - Introductory Example: Fixed-Tilt simple setup -# -# This jupyter journal will walk us through the creation of the most basic fixed-tilt simulation possible with bifacial_radiance. -# We will simulate a 1-up landscape system over a white rooftop. -# -# Steps include: -# -#
    -#
  1. Create a folder for your simulation, and Load bifacial_radiance
  2. -#
  3. Create a Radiance Object
  4. -#
  5. Set the Albedo
  6. -#
  7. Download Weather Files
  8. -#
  9. Generate the Sky
  10. -#
  11. Define a Module type
  12. -#
  13. Create the scene
  14. -#
  15. Combine Ground, Sky and Scene Objects
  16. -#
  17. Analyze and get results
  18. -#
  19. Visualize scene options
  20. -#
-# - -# - -# -# ## 1. Create a folder for your simulation, and load bifacial_radiance -# -# First let's set the folder where the simulation will be saved. By default, this is the TEMP folder in the bifacial_radiance distribution. -# -# The lines below find the location of the folder relative to this Jupyter Journa. You can alternatively point to an empty directory (it will open a load GUI Visual Interface) or specify any other directory in your computer, for example: -# -# #### testfolder = r'C:\Users\sayala\Documents\RadianceScenes\Tutorials\Journal1' -# -# - -# In[1]: - - -import os -testfolder = os.path.abspath(r'..\..\bifacial_radiance\TEMP') - -print ("Your simulation will be stored in %s" % testfolder) - - -# This will load bifacial_radiance and other libraries from python that will be useful for this Jupyter Journal: - -# In[2]: - - -try: - from bifacial_radiance import * -except ImportError: - raise RuntimeError('bifacial_radiance is required. download distribution') - -import numpy as np - - -# - -# ## 2. Create a Radiance Object - -# In[3]: - - -# Create a RadianceObj 'object' named bifacial_example. no whitespace allowed -demo = RadianceObj('bifacial_example',testfolder) - - -# This will create all the folder structure of the bifacial_radiance Scene in the designated testfolder in your computer, and it should look like this: -# -# -# ![Folder Structure](../images_wiki/Journal1Pics/folderStructure.png) - -# - -# ## 3. Set the Albedo - -# To see more options of ground materials available (located on ground.rad), run this function without any input. - -# In[4]: - - -# Input albedo number or material name like 'concrete'. -demo.setGround() # This prints available materials. - - -# If a number between 0 and 1 is passed, it assumes it's an albedo value. For this example, we want a high-reflectivity rooftop albedo surface, so we will set the albedo to 0.62 - -# In[5]: - - -albedo = 0.62 -demo.setGround(albedo) - - -# - -# ## 4. Download and Load Weather Files -# -# There are various options provided in bifacial_radiance to load weatherfiles. getEPW is useful because you just set the latitude and longitude of the location and it donwloads the meteorologicla data for any location. - -# In[6]: - - -# Pull in meteorological data using pyEPW for any global lat/lon -epwfile = demo.getEPW(lat = 37.5, lon = -77.6) # This location corresponds to Richmond, VA. - - -# The downloaded EPW will be in the EPWs folder. -# -# To load the data, use readWeatherFile. This reads EPWs, TMY meterological data, or even your own data as long as it follows TMY data format (With any time resoultion). - -# In[7]: - - -# Read in the weather data pulled in above. -metdata = demo.readWeatherFile(epwfile) - - -# - -# ## 5. Generate the Sky. -# -# Sky definitions can either be for a single time point with gendaylit function, -# or using gencumulativesky to generate a cumulativesky for the entire year. -# - -# In[8]: - - -fullYear = True -if fullYear: - demo.genCumSky(demo.epwfile) # entire year. -else: - demo.gendaylit(metdata,4020) # Noon, June 17th (timepoint # 4020) - - -# The method gencumSky calculates the hourly radiance of the sky hemisphere by dividing it into 145 patches. Then it adds those hourly values to generate one single cumulative sky. Here is a visualization of this patched hemisphere for Richmond, VA, US. Can you deduce from the radiance values of each patch which way is North? -# -# ![Example of the hemisphere cumulative sky](../images_wiki/Journal1Pics/cumulativesky.png) -# -# Answer: Since Richmond is in the Northern Hemisphere, the modules face the south, which is where most of the radiation from the sun is coming. The north in this picture is the darker blue areas. - -# - -# ## 6. DEFINE a Module type -# -# You can create a custom PV module type. In this case we are defining a module named "Prism Solar Bi60", in landscape. The x value defines the size of the module along the row, so for landscape modules x > y. This module measures y = 0.984 x = 1.695. -# -# -#
-# Modules in this example are 100% opaque. For drawing each cell, makeModule needs more inputs with cellLevelModule = True. You can also specify a lot more variables in makeModule like multiple modules, torque tubes, spacing between modules, etc. Reffer to the Module Documentation and read the following jupyter journals to explore all your options. -#
-# - -# In[9]: - - -module_type = 'Prism Solar Bi60 landscape' -demo.makeModule(name=module_type,x=1.695, y=0.984) - - -# In case you want to use a pre-defined module or a module you've created previously, they are stored in a JSON format in data/module.json, and the options available can be called with printModules: - -# In[10]: - - -availableModules = demo.printModules() - - -# - -# ## 7. Make the Scene -# -# The sceneDicitonary specifies the information of the scene, such as number of rows, number of modules per row, azimuth, tilt, clearance_height (distance between the ground and lowest point of the module) and any other parameter. -# -# Azimuth gets measured from N = 0, so for South facing modules azimuth should equal 180 degrees -# - -# In[11]: - - -sceneDict = {'tilt':10,'pitch':3,'clearance_height':0.2,'azimuth':180, 'nMods': 20, 'nRows': 7} - - -# To make the scene we have to create a Scene Object through the method makeScene. This method will create a .rad file in the objects folder, with the parameters specified in sceneDict and the module created above. - -# In[12]: - - -scene = demo.makeScene(module_type,sceneDict) - - -# - -# ## 8. COMBINE the Ground, Sky, and the Scene Objects -# -# Radiance requires an "Oct" file that combines the ground, sky and the scene object into it. -# The method makeOct does this for us. - -# In[13]: - - -octfile = demo.makeOct(demo.getfilelist()) - - -# To see what files got merged into the octfile, you can use the helper method getfilelist. This is useful for advanced simulations too, specially when you want to have different Scene objects in the same simulation, or if you want to add other custom elements to your scene (like a building, for example) - -# In[14]: - - -demo.getfilelist() - - -# - -# ## 9. ANALYZE and get Results -# -# Once the octfile tying the scene, ground and sky has been created, we create an Analysis Object. We first have to create an Analysis object, and then we have to specify where the sensors will be located with moduleAnalysis. -# - -# First let's create the Analysis Object - -# In[15]: - - -analysis = AnalysisObj(octfile, demo.basename) - - -# Then let's specify the sensor location. If no parameters are passed to moduleAnalysis, it will scan the center module of the center row: - -# In[16]: - - - -frontscan, backscan = analysis.moduleAnalysis(scene) - - -# The frontscan and backscan include a linescan along a chord of the module, both on the front and back. -# -# ![Simple example for south facing module](../images_wiki/Journal1Pics/frontscan_backscan.png) -# Analysis saves the measured irradiances in the front and in the back on the results folder. Prints out the ratio of the average of the rear and front irradiance values along a chord of the module. - -# In[17]: - - -results = analysis.analysis(octfile, demo.basename, frontscan, backscan) - - -# The results are also automatically saved in the results folder. Some of our input/output functions can be used to read the results and work with them, for example: - -# In[18]: - - -load.read1Result('results\irr_bifacial_example.csv') - - -# As can be seen in the results for the *Wm2Front* and *WM2Back*, the irradiance values are quite high. This is because a cumulative sky simulation was performed on step 5 , so this is the total irradiance over all the hours of the year that the module at each sampling point will receive. Dividing the back irradiance average by the front irradiance average will give us the bifacial gain for the year: -# -# ![Bifacial Gain in Irradiance Formula](../images_wiki/Journal1Pics/BGG_Formula.png) -# -# Assuming that our module from Prism Solar has a bifaciality factor (rear to front performance) of 90%, our bifacial gain is of: - -# In[19]: - - -bifacialityfactor = 0.9 -print('Annual bifacial ratio: %0.2f ' %( np.mean(analysis.Wm2Back) * bifacialityfactor / np.mean(analysis.Wm2Front)) ) - - -# - -# ## 10. View / Render the Scene -# -# If you used gencumsky or gendaylit, you can view the Scene by navigating on a command line to the folder and typing: -# -# ##### objview materials\ground.rad objects\Prism_Solar_Bi60_landscape_0.2_3_10_20x7_origin0,0.rad -# -# This objview has 3 different light sources of its own, so the shading is not representative. -# -# ONLY If you used gendaylit , you can view the scene correctly illuminated with the sky you generated after generating the oct file, with -# -# ##### rvu -vf views\front.vp -e .01 bifacial_example.oct -# -# The rvu manual can be found here: manual page here: http://radsite.lbl.gov/radiance/rvu.1.html -# -# Or you can also use the code below from bifacial_radiance to generate an HDR rendered image of the scene. You can choose from front view or side view in the views folder: - -# In[ ]: - - -# Make a color render and falsecolor image of the scene. -analysis.makeImage('side.vp') -analysis.makeFalseColor('side.vp') - - -# This is how the False Color image stored in images folder should look like: -# -# ![OpenHDR image example of False color](../images_wiki/Journal1Pics/openhdr_FalseColorExample.png) - -# Files are saved as .hdr (high definition render) files. Try LuminanceHDR viewer (free) to view them, or https://viewer.openhdr.org/ -# -#