Question
Data Processing (25 points) Reading time saver : This is identical to Lab4 Part III, except that you are writing Perl script instead of shell
Data Processing (25 points)
Reading time saver: This is identical to Lab4 Part III, except that you are writing Perl script instead of shell script.
Your Perl program must adhere to the following requirements:
Must use the pragmas below:
use strict
use constant
Must include subroutines
Must only use the features or functions covered in the Unit. Note that features have wide range of options. Online documentation, reference materials, and other search engine can be used to explore those many options for efficient code.
Consider the files files l2b1.iva, l2b2.iva, and l2b3.iva from your lab2B. These are raw performance data collected on a solar photovoltaic module installed at ASU Polytechnic campus. These data must be processed to determine the performance output of the system or panel. The 3 files correspond to 3 repeated measurements.
Upon processing, the test data are presented as shown in the table below:
Performance Data | |
Date | 12/30/2006 |
Tamb (C) | 15.8 |
Tref (C) | 30.1 |
Tm (C) | 20.2 |
Irradiance (W/m^2) | 1006.2 |
Isc (A) | 8.40 |
Voc (V) | 37.14 |
Imp (A) | 7.55 |
Vmp (V) | 28.19 |
Pm (W) | 212.86 |
FF (%) | 68.3 |
The data in the table above are average values from 3 repeated measurements on panel id gge001. The 3 measurements gge001x, gge001y, and gge001z are shown in the table/file below.
For this lab, well use the file below, obtained from previous labs.
F gge0001x gge0001y gge0001z
D 12-30-2006 12-30-2006 12-30-2006
T 14:15:20 14:15:55 14:16:27
S a69 a69 a69
B 15.8 16.1 15
M gge06001 gge06001 gge06001
P 30.1 29.6 29.9
Q 20.2 22.3 23.4
R 1006.2 1003.5 999.8
U 1011.8 1011.8 1005
X 34.7 35.2 35.1
A 38.994 38.994 38.994
G 107.71 107.71 107.71
H 8.395 8.406 8.368
O 37.141 36.823 36.621
C 7.55 7.532 7.437
K 28.193 27.902 27.856
W 212.86 210.15 207.15
L 68.3 67.9 67.6
You are to write a Perl program that produces the Performance Data table as shown above.
Note the corresponding rows:
Date D
Tamb B
Tref P
Tm Q
Irradiance R
Isc H
Voc O
Imp C
Vmp K
Pm W
FF L
You will submit 1 file: Your script file, called lab6.pl
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started