Institutional Repository | Satya Wacana Christian University: Alat Peraga Oscillating Water Column untuk Matakuliah Energi Baru dan Terbarukan

(1)

71

LAMPIRAN A

ALGORITMA PCDUINO BERBASIS PYTHON

Berikut ini merupakan lampiran algoritma pcDuino berbasis python. Algoritma yang digunakan untuk sistem Oscillating Water Column sebagai berikut:

Program_Utama.py import time import gpio

from adc import analog_read from SensorArus import* from SensorTegangan import* from rpm import*

#Inisialisasi gpio port EnableMux = "gpio4" A = "gpio0"

B = "gpio1" C = "gpio2" D = "gpio3"

temp_ArusGenerator = 0 temp_ArusOutputBoost = 0 temp_ArusSupercapacitor = 0 temp_ArusBeban = 0

temp_ArusMotor = 0

temp_TeganganGenerator = 0 temp_TeganganOutputBoost = 0 temp_TeganganSupercapacitor = 0 temp_TeganganBeban = 0

temp_TeganganMotor = 0 temp_rpm = 0

temp_DayaGenerator = 0 temp_DayaOutputBoost = 0 temp_DayaSupercapacitor = 0 temp_DayaBeban = 0

temp_DayaMotor = 0 select = 0

value = 0 voltage = 0

voltageCompare = 0 voltage_temp0 = 0 def delay_ms(ms):

time.sleep(1.0*ms/1000) def delay_us(us):


(2)

72 time.sleep(1.0*us/1000000) def setup():

gpio.pinMode(EnableMux, gpio.OUTPUT) gpio.pinMode(A, gpio.OUTPUT)

gpio.pinMode(B, gpio.OUTPUT) gpio.pinMode(C, gpio.OUTPUT) gpio.pinMode(D, gpio.OUTPUT)

gpio.pinMode("gpio6", gpio.OUTPUT) def loop():

while(1):

#====================ambil Data ACS======================= for g in range (0,5):

if g == 0 :

#print("nol")

gpio.digitalWrite(EnableMux, gpio.LOW)

gpio.digitalWrite(A, gpio.LOW) #ACS GENERATOR #alamat Y0

gpio.digitalWrite(B, gpio.LOW) gpio.digitalWrite(C, gpio.LOW) gpio.digitalWrite(D, gpio.LOW) ArusGenerator = sensorArus()

ArusGenerator.calc_acs_generator()

temp_ArusGenerator = ArusGenerator.nilaiArus if g == 1 :

#print("satu")

gpio.digitalWrite(EnableMux, gpio.LOW)

gpio.digitalWrite(A, gpio.HIGH) #ACS OUTPUT BOOST #alamat Y1

gpio.digitalWrite(B, gpio.LOW) gpio.digitalWrite(C, gpio.LOW) gpio.digitalWrite(D, gpio.LOW) ArusOutputBoost = sensorArus()

ArusOutputBoost.calc_acs_outputBoost()

temp_ArusOutputBoost = ArusOutputBoost.nilaiArus if g == 2 :

#print("dua")

gpio.digitalWrite(EnableMux, gpio.LOW)

gpio.digitalWrite(A, gpio.LOW) #ACS SUPERCAPACITOR #alamat Y2

gpio.digitalWrite(B, gpio.HIGH) gpio.digitalWrite(C, gpio.LOW) gpio.digitalWrite(D, gpio.LOW) ArusSupercapacitor = sensorArus()

ArusSupercapacitor.calc_acs_supercapacitor() temp_ArusSupercapacitor =

ArusSupercapacitor.nilaiArus if g == 3 :

#print("tiga")


(3)

73

gpio.digitalWrite(A, gpio.HIGH)#ACS BEBAN#alamatY3 gpio.digitalWrite(B, gpio.HIGH)

gpio.digitalWrite(C, gpio.LOW) gpio.digitalWrite(D, gpio.LOW) ArusBeban = sensorArus()

ArusBeban.calc_acs_beban()

temp_ArusBeban = ArusBeban.nilaiArus if g == 4 :

#print("empat")

gpio.digitalWrite(EnableMux, gpio.LOW)

gpio.digitalWrite(A, gpio.LOW) #ACS MOTOR#alamatY4 gpio.digitalWrite(B, gpio.LOW)

gpio.digitalWrite(C, gpio.HIGH) gpio.digitalWrite(D, gpio.LOW) ArusMotor = sensorArus()

ArusMotor.calc_acs_motor()

temp_ArusMotor = ArusMotor.nilaiArusMotor for h in range(0,5) :

if h == 0 :

#print"TEGANGAN GENERATOR"

gpio.digitalWrite(EnableMux, gpio.LOW)

gpio.digitalWrite(A, gpio.LOW) #TEGANGAN GENERATOR #alamat Y8

gpio.digitalWrite(B, gpio.LOW) gpio.digitalWrite(C, gpio.LOW) gpio.digitalWrite(D, gpio.HIGH) TeganganGenerator = sensorTegangan() TeganganGenerator.kalkulasiTegangan() temp_TeganganGenerator =

TeganganGenerator.nilaiTegangan if h == 1 :

#print"TEGANGAN BOOST"

gpio.digitalWrite(EnableMux, gpio.LOW)

gpio.digitalWrite(A, gpio.HIGH) #TEGANGAN OUTPUT BOOST #alamat Y9

gpio.digitalWrite(B, gpio.LOW) gpio.digitalWrite(C, gpio.LOW) gpio.digitalWrite(D, gpio.HIGH)

TeganganOutputBoost = sensorTegangan() TeganganOutputBoost.kalkulasiTegangan() temp_TeganganOutputBoost =

TeganganOutputBoost.nilaiTegangan if h == 2 :

#print"TEGANGAN SUPERCAPACITOR"

gpio.digitalWrite(EnableMux, gpio.LOW) gpio.digitalWrite(A, gpio.LOW) #TEGANGAN SUPERCAPACITOR #alamat Y10

gpio.digitalWrite(B, gpio.HIGH) gpio.digitalWrite(C, gpio.LOW) gpio.digitalWrite(D, gpio.HIGH)


(4)

74

TeganganSupercapacitor.kalkulasiTegangan() temp_TeganganSupercapacitor =

TeganganSupercapacitor.nilaiTegangan if h == 3 :

#print"TEGANGAN BEBAN"

gpio.digitalWrite(EnableMux, gpio.LOW)

gpio.digitalWrite(A, gpio.HIGH) #TEGANGAN BEBAN #alamat Y11

gpio.digitalWrite(B, gpio.HIGH) gpio.digitalWrite(C, gpio.LOW) gpio.digitalWrite(D, gpio.HIGH) TeganganBeban = sensorTegangan() TeganganBeban.kalkulasiTegangan()

temp_TeganganBeban = TeganganBeban.nilaiTegangan if h == 4 :

#print"TEGANGAN MOTOR"

gpio.digitalWrite(EnableMux, gpio.LOW)

gpio.digitalWrite(A, gpio.LOW) #TEGANGAN MOTOR #alamat Y12

gpio.digitalWrite(B, gpio.LOW) gpio.digitalWrite(C, gpio.HIGH) gpio.digitalWrite(D, gpio.HIGH) TeganganMotor = sensorTegangan()

TeganganMotor.kalkulasiTeganganMotor()

temp_TeganganMotor = TeganganMotor.nilaiTegangan1

#==================ambil Data Kecepatan Turbin=================== r = RPM()

r.kalkulasi_rpm() temp_rpm = r.nilai_rpm

#=======================Kalkulasi Daya=========================== temp_DayaGenerator = temp_TeganganGenerator *

temp_ArusGenerator

temp_DayaOutputBoost = temp_TeganganOutputBoost * temp_ArusOutputBoost

temp_DayaSupercapacitor = temp_TeganganSupercapacitor * temp_ArusSupercapacitor

temp_DayaBeban = temp_TeganganBeban * temp_ArusBeban temp_DayaMotor = temp_TeganganMotor * temp_ArusMotor

#========================Kalkulasi Daya========================== #temp_Efisiensi = (temp_DayaOutputBoost / temp_DayaGenerator) * 100 #Efisensi = (Daya keluaran / Daya masukan) * 100%

#===================Simpan ke File txt=========================== try:


(5)

75 #print(files.name) #print(files.mode)

#print("apakah file ditutup? ", files.closed)

#files.write('data')

files.write('\t\t\t\t\t\t\t\t\t\tArus (A)') ########### Mengisi File Data Arus

files.write('\n')

files.write('Arus Generator\t\t\t\t\t\t') files.write(str(temp_ArusGenerator)) files.write('\n')

files.write('ArusOutputBoost\t\t\t\t\t\t') files.write(str(temp_ArusOutputBoost)) files.write('\n')

files.write('Arus Supercapacitor\t\t\t\t\t') files.write(str(temp_ArusSupercapacitor)) files.write('\n')

files.write('Arus Beban\t\t\t\t\t\t\t') files.write(str(temp_ArusBeban))

files.write('\n')

files.write('Arus Motor\t\t\t\t\t\t\t') files.write(str(temp_ArusMotor))

files.write('\n') files.write('\n')

files.write('\t\t\t\t\t\t\t\t\t\tTegangan (V)\n') ############ Mengisi File Data Tegangan

files.write('Tegangan Generator\t\t\t\t\t') files.write(str(temp_TeganganGenerator)) files.write('\n')

files.write('Tegangan Output Boost\t\t\t\t') files.write(str(temp_TeganganOutputBoost)) files.write('\n')

files.write('Tegangan Supercapacitor\t\t\t') files.write(str(temp_TeganganSupercapacitor)) files.write('\n')

files.write('Tegangan Beban\t\t\t\t\t\t') files.write(str(temp_TeganganBeban)) files.write('\n')

files.write('Tegangan Motor\t\t\t\t\t\t') files.write(str(temp_TeganganMotor)) files.write('\n')

files.write('\n')

files.write('\t\t\t\t\t\t\t\t\t\tKecepatan Turbin (rpm)') ############ Mengisi File Data Tegangan

files.write('\n')

files.write('Kecepatan Turbin\t\t\t\t\t\t') files.write(str(temp_rpm))

files.write('\n') files.write('\n')

files.write('\t\t\t\t\t\t\t\t\t\tDaya (W)\n') ############ Mengisi File Data Daya


(6)

76

files.write(str(temp_DayaGenerator)) files.write('\n')

files.write('Daya Output Boost\t\t\t\t\t') files.write(str(temp_DayaOutputBoost)) files.write('\n')

files.write('Daya Supercapacitor\t\t\t\t\t') files.write(str(temp_DayaSupercapacitor)) files.write('\n')

files.write('Daya Beban\t\t\t\t\t\t\t') files.write(str(temp_DayaBeban))

files.write('\n')

files.write('Daya Motor\t\t\t\t\t\t\t') files.write(str(temp_DayaMotor))

files.write('\n') files.write('\n') files.write('\n') files.close()

#print("apakah file sudah ditutup? ", files.closed) except IOError, e:

print "proses error karena: ",e

#=========================cetak Data============================== print("\n\n\n\n\n\n\n\n\n\n")

print("==================================DATA================ =====================")

print("\tTegangan Generator

\t\t\t\t%4.3f\tV"%temp_TeganganGenerator) print("\tTegangan Output Boost

\t\t\t\t%4.3f\tV"%temp_TeganganOutputBoost) print("\tTegangan Supercapacitor

\t\t\t%4.3f\tV"%temp_TeganganSupercapacitor) print("\tTegangan Beban (LED 1watt) \t\t\t%4.3f\tV"%temp_TeganganBeban)

print("\tTegangan Motor

\t\t\t\t\t%4.3f\tV"%temp_TeganganMotor) print("\n")

print("\tArus Generator

\t\t\t\t\t%4.3f\tA"%temp_ArusGenerator) print("\tArus Output Boost

\t\t\t\t%4.3f\tA"%temp_ArusOutputBoost) print("\tArus Supercapacitor

\t\t\t\t%4.3f\tA"%temp_ArusSupercapacitor) print("\tArus Beban (LED 1watt)

\t\t\t\t%4.3f\tA"%temp_ArusBeban)

print("\tArus Motor \t\t\t\t\t%4.3f\tA"%temp_ArusMotor) print("\n")

print("\tKecepatan Turbin \t\t\t\t%4.3f\trpm"%temp_rpm) print("\n")

print("\tDaya Generator

\t\t\t\t\t%4.3f\tW"%temp_DayaGenerator) print("\tDaya Output Boost


(7)

77 print("\tDaya Supercapacitor

\t\t\t\t%4.3f\tW"%temp_DayaSupercapacitor) print("\tDaya Beban (LED 1watt)

\t\t\t\t%4.3f\tW"%temp_DayaBeban)

print("\tDaya Motor \t\t\t\t\t%4.3f\tW"%temp_DayaMotor) print("\n")

print("====================================================== ======================\n\n\n")

def main(): setup() loop() main()

gpio.py

#!/usr/bin/env python #

# io test code for pcDuino ( http://www.pcduino.com ) #

__all__ = ['HIGH', 'LOW', 'INPUT', 'OUTPUT','digitalWrite', 'digitalRead', "pinMode"]

_GPIO_PINS =

('gpio0','gpio1','gpio2','gpio3','gpio4','gpio5','gpio6','gpio7', 'gpio8', 'gpio9', 'gpio10', 'gpio11', 'gpio12', 'gpio13',

'gpio14', 'gpio15', 'gpio16', 'gpio17', 'gpio18', 'gpio19')

_PIN_FD_PATH = '/sys/devices/virtual/misc/gpio/pin/%s' _MODE_FD_PATH = '/sys/devices/virtual/misc/gpio/mode/%s' HIGH = 1

LOW = 0 INPUT = 0 OUTPUT = 1

class InvalidChannelException(Exception):

"""The channel sent is invalid on pcDuino board """ pass

def _GetValidId(channel): if channel in _GPIO_PINS: return channel

else:

raise InvalidChannelException def digitalWrite(channel, value): """Write to a GPIO channel""" id = _GetValidId(channel)

with open(_PIN_FD_PATH % id, 'w') as f: f.write('1' if value == HIGH else '0')


(8)

78 def digitalRead(channel):

"""Read from a GPIO channel""" id = _GetValidId(channel)

with open(_PIN_FD_PATH % id, 'r') as f: return f.read(1) == '1'

def pinMode(channel, mode):

""" Set Mode of a GPIO channel """ id = _GetValidId(channel)

with open(_MODE_FD_PATH % id, 'w') as f: f.write('0' if mode == INPUT else '1')

adc.py

#!/usr/bin/env python

_PIN_FD_PATH = '/proc/adc%s'

def analog_read(channel):

"""Return the integer value of an adc pin. adc0 and adc1 have 6 bit resolution.

adc2 through adc5 have 12 bit resolution. """

with open(_PIN_FD_PATH % channel, 'r') as f: return int(f.read(32).split(':')[1].strip())

SensorArus.py

import time,math,gpio

from adc import analog_read

def delay_ms(ms):

time.sleep(1.0*ms/1000) def delay_us(us):

time.sleep(1.0*us/1000000) class sensorArus():

def __init__(self): self.value = 0 self.valueAvg = 0 self.valueCompare = 0 self.valueCompareAvg = 0 self.voltage = 0

self.voltageCompare = 0 self. selisihTegangan = 0 self.nilaiArus = 0

self.samplemax=1000 self.value0 = 0 self.valueAvg0 = 0


(9)

79 self.valueCompare0 = 0 self.valueCompareAvg0 = 0 self.voltage0 = 0

self.voltageCompare0 = 0 self. selisihTegangan0 = 0 self.nilaiArusMotor = 0

def calc_acs_generator(self):

for i in range(0,self.samplemax): #sampling 1000kali

self.value += analog_read(2)

self.valueCompare += analog_read(3) delay_us(10)

#print "DONE"

self.valueAvg = (self.value / self.samplemax) #print (self.valueAvg )

#print("+++++")

#self.valueAvg = self.valueAvg * 0.909 #print (self.valueAvg )

self.valueCompareAvg = (self.valueCompare / self.samplemax)

self.voltage = (self.valueAvg* 3.015)/4095 self.voltageCompare = (self.valueCompareAvg * 3.015)/4095

self.selisihTegangan = self.voltage - self.voltageCompare

self.nilaiArus = (self.selisihTegangan*1000/185) def calc_acs_outputBoost(self):

for i in range(0,self.samplemax): #sampling 1000kali

self.value += analog_read(2)

self.valueCompare += analog_read(3) delay_us(10)

#print "DONE"

self.valueAvg = (self.value / self.samplemax) #print (self.valueAvg )

#print("+++++")

#self.valueAvg = self.valueAvg * 0.909 #print (self.valueAvg )

self.valueCompareAvg = (self.valueCompare / self.samplemax)

self.voltage = (self.valueAvg* 3.015)/4095 self.voltageCompare = (self.valueCompareAvg * 3.015)/4095


(10)

80

self.selisihTegangan = self.voltage - self.voltageCompare

self.nilaiArus = (self.selisihTegangan*1000/185) def calc_acs_supercapacitor(self):

for i in range(0,self.samplemax): #sampling 1000kali

self.value += analog_read(2)

self.valueCompare += analog_read(3) delay_us(10)

#print "DONE"

self.valueAvg = (self.value / self.samplemax) #print (self.valueAvg )

#print("+++++")

#self.valueAvg = self.valueAvg * 0.909 #print (self.valueAvg )

self.valueCompareAvg = (self.valueCompare / self.samplemax)

self.voltage = (self.valueAvg* 3.015)/4095 self.voltageCompare = (self.valueCompareAvg * 3.015)/4095

self.selisihTegangan = self.voltage - self.voltageCompare

self.nilaiArus = (self.selisihTegangan*1000/185) def calc_acs_beban(self):

for i in range(0,self.samplemax): #sampling 1000kali

self.value += analog_read(2)

self.valueCompare += analog_read(3) delay_us(10)

#print "DONE"

self.valueAvg = (self.value / self.samplemax) #print (self.valueAvg )

#print("+++++")

#self.valueAvg = self.valueAvg * 0.909 #print (self.valueAvg )

self.valueCompareAvg = (self.valueCompare / self.samplemax)

self.voltage = (self.valueAvg* 3.015)/4095 self.voltageCompare = (self.valueCompareAvg * 3.015)/4095

self.selisihTegangan = self.voltage - self.voltageCompare

self.nilaiArus = (self.selisihTegangan*1000/185) def calc_acs_motor(self):


(11)

81

for h in range(0,self.samplemax): #sampling 1000kali

self.value0 += analog_read(2)

self.valueCompare0 += analog_read(3) delay_us(10)

self.valueAvg0 = (self.value0 / self.samplemax) self.valueCompareAvg0 = (self.valueCompare0 / self.samplemax)

self.voltage0 = (self.valueAvg0 * 3.015)/4095 self.voltageCompare0 = (self.valueCompareAvg0 * 3.015)/4095

self.selisihTegangan0 = self.voltageCompare0 - self.voltage0

self.nilaiArusMotor = (self.selisihTegangan0*1000/185)

SensorTegangan.py import time,math,gpio

from adc import analog_read

#from take_data import delay_ms,delay_us def delay_ms(ms):

time.sleep(1.0*ms/1000) def delay_us(us):

time.sleep(1.0*us/1000000) class sensorTegangan():

def __init__(self): self.value1 = 0 self.voltage1 = 0 self.valueAvg1 = 0 self.samplemax=300 self.nilaiTegangan = 0 self.value2 = 0

self.voltage2 = 0 self.valueAvg2 = 0 self.nilaiTegangan1 = 0 def kalkulasiTegangan(self):

for l in range(0,self.samplemax): #sampling 300kali

self.value1+= analog_read(2) delay_us(10)

self.valueAvg1 = (self.value1 / self.samplemax) self.voltage1 = ((self.valueAvg1)* 3.015) / 4095 #print(self.valueAvg1, self.voltage1)


(12)

82 #print(self.nilaiTegangan) def kalkulasiTeganganMotor(self):

for m in range(0,self.samplemax): #sampling 300kali

self.value2+= analog_read(2) delay_us(10)

self.valueAvg2 = (self.value2 / self.samplemax) self.voltage2 = ((self.valueAvg2)* 3.3) / 4095 #print(self.valueAvg2, self.voltage2)

self.nilaiTegangan1 = (self.voltage2 / 3.3) * 12 #print(self.nilaiTegangan1)

rpm.py

import time, gpio class RPM():

def __init__(self): self.counter = 0 self.nilai_rpm = 0 def kalkulasi_rpm(self):

self.counter = 0

for d in range (0,50):

a = gpio.digitalRead("gpio7") if a == gpio.LOW :

self.counter = self.counter + 1 if a == gpio.HIGH :

self.counter = self.counter + 0 time.sleep(0.1)

self.nilai_rpm = (self.counter / 2.0) / 0.083333 print(self.nilai_rpm)

run_pwm.py

import time, gpio from peweem import* #from pwm import* dutycycle =100.0 def setup():

gpio.pinMode("gpio6", gpio.OUTPUT) def loop():

while(1):

try:


(13)

83

p.PWM_output("gpio6", gpio.HIGH, gpio.LOW) except IOError, e:

print "proses error!!!!!!!! : ",e def main():

setup() loop() main()

peweem.py import time import gpio

class PWM():

def __init__(self, frekuensi, dutyCycle): self.periode = 1.0 / frekuensi

####### T=1/f

self.maxCycle = 100

self.sliceTime = self.periode / self.maxCycle self.dutyCycle=dutyCycle

# print(self.periode, self.maxCycle, self.sliceTime, self.dutyCycle)

#gpio.pinMode(PwmPin, gpio.OUTPUT)

def PWM_output(self, gpioPin, valuePinHigh, valuePinLow): # print"+"

gpio.digitalWrite(gpioPin, valuePinHigh) time.sleep(self.dutyCycle * self.sliceTime)

print(self.dutyCycle, self.dutyCycle * self.sliceTime) # print"-"

gpio.digitalWrite(gpioPin, valuePinLow)

time.sleep((self.maxCycle - self.dutyCycle) * self.sliceTime)

print((self.maxCycle - self.dutyCycle) * self.sliceTime)

"""def start(self, dutyCycle): self.dutyCycle = dutyCycle

self.thread = threading.Thread(None, self.run, None, (), {})

self.thread.start()

def changeFrequency(self, frequency,): self.baseTime = 1.0 / frequency

self.sliceTime = self.baseTime / self.maxCycle def changeDutyCycle(self, dutyCycle):


(14)

84

LAMPIRAN B

DATA HASIL PENGUJIAN SISTEM KESELURUHAN

Berikut ini merupakan hasil pengujian sistem keseluruhan dari sistem Oscillating Water Column dengan beberapa konfigurasi.

Tabel B.1. Pengujian Keseluruhan Sistem Kondisi Surut tanpa Beban dengan PWM Cepat

Tabel B.2. Pengujian Keseluruhan Sistem Kondisi Surut dengan Beban dan PWM Cepat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 0,092 0,092 0,092 11,959 0,103 0,008 -0,02 0,056 -0,012 2 1 0,8 1,111 1,118 1,118 11,997 0,155 0,016 -0,02 0,06 2,026 3 2 0,538 1,945 1,945 1,945 11,997 0,167 0,016 -0,02 0,056 2,156 4 3 0,593 2,714 2,714 2,714 11,968 0,183 0,016 -0,02 0,056 1,795 5 4 0,878 3,837 3,837 3,837 11,997 0,139 0,016 -0,02 0,06 1,568 6 5 0,884 4,295 4,295 4,295 11,959 0,123 0,012 -0,02 0,06 1,978 7 6 1,022 4,55 4,55 4,55 11,962 0,175 0,012 -0,02 0,056 2,052 8 7 0,59 4,779 4,779 4,779 11,959 0,151 0,016 -0,02 0,06 2,385 9 8 0,503 4,883 4,883 4,883 12 0,139 0,012 -0,02 0,06 1,768 10 9 0,965 4,985 4,985 4,985 11,997 0,151 0,016 -0,02 0,06 2,024 11 10 0,977 4,987 4,987 4,987 11,959 0,167 0,012 -0,02 0,056 2,265 12 11 0,959 5 5 5 11,997 0,111 0,016 -0,02 0,06 2,043

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,028 0,055 0,055 0,055 12 0,099 0,008 -0,02 0,056 -0,012 2 1 0,785 1,549 1,551 1,551 12 0,139 0,008 -0,02 0,068 2,072 3 2 0,562 2,527 2,527 2,527 11,959 0,159 0,012 -0,02 0,068 1,896 4 3 0,632 2,802 2,802 2,802 11,982 0,155 0,012 -0,02 0,068 2,129 5 4 0,708 3,116 3,115 3,116 11,978 0,159 0,016 -0,02 0,06 1,762 6 5 0,467 3,001 3,004 3,002 11,959 0,171 0,012 -0,02 0,068 2,301 7 6 0,844 3,044 3,044 3,044 11,959 0,179 0,016 -0,02 0,06 1,792 8 7 0,621 3,154 3,154 3,154 12 0,127 0,012 -0,02 0,06 2,218 9 8 0,75 3,055 3,057 3,057 11,959 0,119 0,016 -0,02 0,068 1,978


(15)

85

Tabel B.3. Pengujian Keseluruhan Sistem Kondisi Surut tanpa Beban dengan PWM Sedang

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,028 0,072 0,072 0,072 11,959 0,099 0,008 -0,02 0,056 -0,012 2 1 0,278 0,418 0,418 0,418 11,997 0,139 0,016 -0,02 0,056 1,536 3 2 0,545 0,803 0,803 0,803 11,899 0,159 0,016 -0,02 0,06 1,932 4 3 0,343 1,265 1,265 1,265 11,992 0,155 0,016 -0,02 0,056 1,765 5 4 0,575 1,511 1,511 1,511 11,962 0,159 0,016 -0,02 0,06 1,812 6 5 0,265 1,749 1,749 1,749 11,959 0,171 0,012 -0,02 0,056 1,795 7 6 0,437 1,915 1,915 1,915 11,997 0,107 0,016 -0,02 0,056 1,884 8 7 0,327 2,111 2,111 2,111 11,959 0,183 0,016 -0,02 0,06 1,854 9 8 0,58 2,382 2,382 2,382 11,959 0,119 0,012 -0,02 0,06 1,659 10 9 0,311 2,597 2,597 2,597 11,959 0,111 0,012 -0,02 0,06 1,687 11 10 0,545 2,71 2,71 2,71 11,959 0,183 0,016 -0,02 0,06 1,881 12 11 0,378 2,822 2,822 2,822 11,959 0,139 0,012 -0,02 0,06 1,523 13 12 0,521 3,104 3,104 3,104 11,997 0,099 0,012 -0,02 0,056 1,911 14 13 0,264 3,223 3,223 3,223 11,862 0,103 0,012 -0,02 0,056 1,871 15 14 0,338 3,477 3,477 3,477 11,996 0,101 0,016 -0,02 0,06 1,415 16 15 0,488 3,681 3,681 3,681 11,959 0,173 0,016 -0,02 0,06 1,781 17 16 0,427 3,755 3,755 3,755 11,962 0,156 0,016 -0,02 0,056 1,985 18 17 0,517 3,958 3,958 3,958 11,899 0,159 0,012 -0,02 0,056 1,578 19 18 0,563 4,162 4,162 4,162 11,997 0,119 0,016 -0,02 0,06 2,05 20 19 0,552 4,301 4,301 4,301 11,992 0,139 0,016 -0,02 0,056 1,851 21 20 0,145 4,426 4,426 4,426 11,997 0,127 0,016 -0,02 0,056 1,799 22 21 0,287 4,684 4,684 4,684 11,982 0,177 0,012 -0,02 0,06 1,384 23 22 0,407 4,854 4,854 4,854 11,962 0,139 0,016 -0,02 0,056 1,824 24 23 0,392 4,969 4,969 4,969 11,959 0,179 0,012 -0,02 0,056 1,871 25 24 0,284 4,975 4,975 4,975 11,959 0,123 0,016 -0,02 0,056 1,628 26 25 0,526 4,982 4,982 4,982 11,959 0,181 0,016 -0,02 0,056 1,583


(16)

86

Tabel B.4. Pengujian Keseluruhan Sistem Kondisi Surut dengan Beban dan PWM Sedang

Tabel B.5. Pengujian Keseluruhan Sistem Kondisi Surut tanpa Beban dengan PWM Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 0,054 0,054 0,054 11,959 0,099 0,008 -0,02 0,056 -0,012 2 1 0,347 0,215 0,215 0,215 11,982 0,139 0,012 -0,02 0,06 1,329 3 2 0,541 0,421 0,421 0,421 11,959 0,159 0,016 -0,02 0,06 1,548 4 3 0,312 0,613 0,613 0,613 12 0,155 0,016 -0,02 0,056 1,429 5 4 0,145 0,844 0,844 0,844 12 0,159 0,016 -0,02 0,06 1,292 6 5 0,236 1,021 1,021 1,021 12 0,171 0,016 -0,02 0,056 1,616 7 6 0,522 1,244 1,244 1,244 12 0,107 0,012 -0,02 0,056 1,652 8 7 0,328 1,42 1,42 1,42 11,959 0,183 0,012 -0,02 0,056 1,412 9 8 0,289 1,627 1,627 1,627 11,982 0,119 0,012 -0,02 0,06 1,217 10 9 0,332 1,789 1,789 1,789 11,959 0,103 0,016 -0,02 0,056 1,658 11 10 0,475 1,878 1,878 1,878 11,997 0,111 0,016 -0,02 0,06 1,348 12 11 0,248 2,011 2,011 2,011 12 0,128 0,012 -0,02 0,056 1,666 13 12 0,587 2,245 2,245 2,245 11,997 0,103 0,012 -0,02 0,06 1,745 14 13 0,236 2,387 2,387 2,387 11,959 0,121 0,016 -0,02 0,06 1,315 15 14 0,154 2,445 2,445 2,445 11,962 0,099 0,016 -0,02 0,056 1,526 16 15 0,348 2,547 2,547 2,547 11,982 0,103 0,016 -0,02 0,06 1,64 17 16 0,246 2,671 2,671 2,671 11,997 0,099 0,012 -0,02 0,056 1,652 18 17 0,688 2,753 2,753 2,753 11,959 0,103 0,012 -0,02 0,06 1,329

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,029 0,085 0,085 0,085 11,959 0,099 0,008 -0,02 0,056 -0,008 2 1 0,521 0,552 0,552 0,552 11,959 0,155 0,008 -0,02 0,06 1,953 3 2 0,538 1,122 1,122 1,122 11,959 0,167 0,012 -0,02 0,056 1,759 4 3 0,593 1,865 1,865 1,865 11,959 0,123 0,012 -0,02 0,06 1,625 5 4 0,533 2,323 2,323 2,323 11,959 0,139 0,012 -0,02 0,056 1,354 6 5 0,264 2,674 2,674 2,674 11,959 0,123 0,012 -0,02 0,06 1,487 7 6 0,575 2,827 2,827 2,827 11,997 0,175 0,008 -0,02 0,06 1,824 8 7 0,512 2,955 2,955 2,955 11,962 0,151 0,012 -0,02 0,06 1,957 9 8 0,483 3,004 3,004 3,004 11,997 0,139 0,016 -0,02 0,06 1,667 10 9 0,548 2,998 2,998 2,998 11,962 0,151 0,012 -0,02 0,056 1,784 11 10 0,57 3,114 3,114 3,114 11,993 0,117 0,012 -0,02 0,06 1,845 12 11 0,314 3,007 3,007 3,007 11,898 0,111 0,016 -0,02 0,06 1,955 13 12 0,542 3,111 3,111 3,111 11,959 0,152 0,012 -0,02 0,056 1,346 14 13 0,489 3,152 3,152 3,152 11,959 0,147 0,016 -0,02 0,06 1,487


(17)

87

19 18 0,426 2,812 2,812 2,812 11,962 0,111 0,012 -0,02 0,056 1,754 20 19 0,478 2,942 2,942 2,942 11,959 0,123 0,012 -0,02 0,06 1,725 21 20 0,489 3,143 3,143 3,143 11,997 0,115 0,012 -0,02 0,06 1,548 22 21 0,423 3,255 3,255 3,255 11,959 0,107 0,016 -0,02 0,056 1,794 23 22 0,433 3,356 3,356 3,356 11,982 0,136 0,012 -0,02 0,056 1,597 24 23 0,492 3,558 3,558 3,558 11,962 0,107 0,012 -0,02 0,056 1,324 25 24 0,581 3,689 3,689 3,689 11,997 0,127 0,016 -0,02 0,06 1,624 26 25 0,146 3,787 3,787 3,787 11,997 0,111 0,016 -0,02 0,056 1,215 27 26 0,365 3,872 3,872 3,872 11,982 0,099 0,016 -0,02 0,056 1,675 28 27 0,158 3,958 3,958 3,958 11,959 0,103 0,012 -0,02 0,056 1,516 29 28 0,288 4,117 4,117 4,117 12 0,099 0,012 -0,02 0,06 1,246 30 29 0,554 4,289 4,289 4,289 11,997 0,101 0,012 -0,02 0,056 1,617 31 30 0,348 4,378 4,378 4,378 11,959 0,162 0,016 -0,02 0,06 1,785 32 31 0,471 4,477 4,477 4,477 11,962 0,153 0,016 -0,02 0,056 1,144 33 32 0,483 4,548 4,548 4,548 11,997 0,099 0,016 -0,02 0,056 1,662 34 33 0,401 4,598 4,598 4,598 11,997 0,157 0,012 -0,02 0,06 1,439 35 34 0,437 4,686 4,686 4,686 11,962 0,099 0,012 -0,02 0,056 1,201 36 35 0,305 4,712 4,712 4,712 11,959 0,123 0,012 -0,02 0,06 1,618 37 36 0,573 4,776 4,776 4,776 11,982 0,139 0,012 -0,02 0,06 1,672 38 37 0,112 4,814 4,814 4,814 11,959 0,99 0,016 -0,02 0,056 1,148 39 38 0,269 4,893 4,893 4,893 11,997 0,146 0,012 -0,02 0,06 1,623 40 39 0,343 4,923 4,923 4,923 11,959 0,101 0,012 -0,02 0,056 1,684 41 40 0,462 4,941 4,941 4,941 11,962 0,099 0,012 -0,02 0,06 1,741 42 41 0,512 4,947 4,947 4,947 11,997 0,101 0,016 -0,02 0,056 1,059 43 42 0,494 4,952 4,952 4,952 11,982 0,099 0,016 -0,02 0,06 1,469 44 43 0,415 4,956 4,956 4,956 11,997 0,134 0,012 -0,02 0,06 1,324 45 44 0,433 4,963 4,963 4,963 11,997 0,099 0,016 -0,02 0,056 1,492 46 45 0,264 4,971 4,971 4,971 12 0,119 0,016 -0,02 0,06 1,548 47 46 0,394 4,978 4,978 4,978 11,959 0,127 0,012 -0,02 0,056 1,483 48 47 0,562 4,983 4,983 4,983 11,982 0,099 0,012 -0,02 0,06 1,502 49 48 0,511 4,99 4,99 4,99 11,959 0,099 0,016 -0,02 0,06 1,68 50 49 0,423 4,997 4,997 4,997 12 0,137 0,016 -0,02 0,06 1,661


(18)

88

Tabel B.6. Pengujian Keseluruhan Sistem Kondisi Surut dengan Beban dan PWM Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,029 0,085 0,085 0,085 11,959 0,099 0,008 -0,02 0,056 -0,012 2 1 0,521 0,372 0,372 0,372 11,997 0,155 0,012 -0,02 0,056 1,235 3 2 0,538 0,678 0,678 0,678 11,959 0,167 0,016 -0,02 0,06 1,758 4 3 0,593 0,921 0,921 0,921 11,959 0,103 0,012 -0,02 0,06 1,518 5 4 0,533 1,189 1,189 1,189 12 0,139 0,016 -0,02 0,06 1,564 6 5 0,264 1,279 1,279 1,279 11,959 0,123 0,012 -0,02 0,056 1,681 7 6 0,575 1,51 1,51 1,51 12 0,175 0,016 -0,02 0,06 1,754 8 7 0,512 1,793 1,793 1,793 11,997 0,151 0,016 -0,02 0,06 1,715 9 8 0,483 1,961 1,961 1,961 11,959 0,139 0,016 -0,02 0,056 1,264 10 9 0,548 2,176 2,176 2,176 11,959 0,151 0,012 -0,02 0,06 1,716 11 10 0,57 2,315 2,315 2,315 11,962 0,099 0,016 -0,02 0,06 1,348 12 11 0,314 2,621 2,621 2,621 11,959 0,101 0,016 -0,02 0,06 1,694 13 12 0,542 2,898 2,898 2,898 11,982 0,147 0,012 -0,02 0,06 1,45 14 13 0,489 2,937 2,937 2,937 11,959 0,102 0,016 -0,02 0,056 1,77 15 14 0,542 3,056 3,056 3,056 11,959 0,152 0,016 -0,02 0,06 1,316 16 15 0,489 3,03 3,03 3,03 11,959 0,111 0,012 -0,02 0,056 1,482

Tabel B.7. Pengujian Keseluruhan Sistem Kondisi Pasang tanpa Beban dengan PWM Cepat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,028 0,043 0,043 0,043 11,965 0,099 0,008 -0,02 0,06 -0,012 2 1 0,75 0,664 0,664 0,664 11,962 0,107 0,016 -0,02 0,06 2,255 3 2 0,678 0,871 0,871 0,871 11,997 0,111 0,016 -0,02 0,06 1,596 4 3 0,564 1,164 1,165 1,161 11,987 0,147 0,016 -0,02 0,06 2,022 5 4 0,629 1,709 1,711 1,712 11,971 0,127 0,012 -0,02 0,06 1,962 6 5 0,63 1,928 1,93 1,928 11,977 0,151 0,016 -0,02 0,06 2,201 7 6 0,632 2,267 2,267 2,267 11,979 0,135 0,016 -0,02 0,06 1,699 8 7 0,497 2,626 2,623 2,624 11,982 0,163 0,012 -0,02 0,06 1,95 9 8 0,729 2,955 2,955 2,955 12 0,119 0,016 -0,02 0,06 2,229


(19)

89

Tabel B.8. Pengujian Keseluruhan Sistem Kondisi Pasang dengan Beban dan PWM Cepat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,022 0,085 0,085 0,085 11,959 0,099 0,008 -0,02 0,056 -0,012 2 1 0,775 0,783 0,783 0,783 12 0,147 0,016 -0,02 0,068 2,184 3 2 0,43 1,271 1,271 1,273 11,968 0,131 0,012 -0,08 0,068 1,577 4 3 0,444 1,753 1,752 1,751 11,974 0,115 0,016 -0,02 0,06 1,542 5 4 0,551 2,026 2,025 2,025 11,977 0,103 0,016 -0,02 0,06 1,636 6 5 0,624 2,233 2,234 2,234 11,979 0,147 0,016 -0,02 0,056 2,217 7 6 0,62 2,634 2,635 2,637 12 0,123 0,016 -0,02 0,06 2,026 8 7 0,851 2,834 2,833 2,835 12 0,135 0,012 -0,02 0,056 1,685 9 8 0,626 2,915 2,918 2,912 11,982 0,151 0,016 -0,02 0,068 2,245

Tabel B.9. Pengujian Keseluruhan Sistem Kondisi Pasang tanpa Beban dengan PWM Sedang

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,028 1,247 1,247 1,247 11,959 0,088 0,016 -0,02 0,06 -0,008 2 1 0,542 1,247 1,247 1,247 11,959 0,131 0,012 -0,02 0,064 1,811 3 2 0,611 1,684 1,684 1,684 11,956 0,142 0,012 -0,02 0,064 1,349 4 3 0,619 2 2 2 11,985 0,135 0,012 -0,02 0,068 1,465 5 4 0,508 2,543 2,543 2,543 11,959 0,108 0,016 -0,02 0,064 1,496 6 5 0,615 2,696 2,696 2,696 11,956 0,139 0,012 -0,02 0,064 1,286 7 6 0,663 2,745 2,745 2,745 11,956 0,103 0,016 -0,02 0,064 1,425 8 7 0,354 2,81 2,81 2,81 11,959 0,128 0,016 -0,02 0,064 1,166 9 8 0,275 2,853 2,853 2,853 11,959 0,111 0,012 -0,02 0,064 1,325


(20)

90

Tabel B.10. Pengujian Keseluruhan Sistem Kondisi Pasang dengan Beban dan PWM Sedang

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 2,812 2,812 2,812 2,812 0,099 0,012 -0,02 0,06 -0,08 2 1 0,673 2,886 2,886 2,886 2,886 0,111 0,012 -0,02 0,068 1,079 3 2 0,438 2,932 2,932 2,932 2,932 0,103 0,016 -0,02 0,068 1,512 4 3 0,528 3,016 3,016 3,016 3,016 0,127 0,012 -0,02 0,068 1,731 5 4 0,683 3,03 3,03 3,03 3,03 0,135 0,016 -0,02 0,068 1,067 6 5 0,758 2,894 2,894 2,894 2,894 0,103 0,012 -0,02 0,068 1,309 7 6 0,734 2,902 2,902 2,902 2,902 0,127 0,016 -0,02 0,068 1,636 8 7 0,69 2,957 2,957 2,957 2,957 0,111 0,012 -0,02 0,068 1,202 9 8 0,675 2,854 2,854 2,854 2,854 0,127 0,016 -0,02 0,068 1,823

Tabel B.11. Pengujian Keseluruhan Sistem Kondisi Pasang tanpa Beban dengan PWM Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 1,085 1,085 1,085 11,959 0,012 0,08 -0,02 0,056 -0,012 2 1 0,384 1,115 1,115 1,115 11,889 0,012 0,08 -0,02 0,056 1,333 3 2 0,421 1,134 1,134 1,134 11,915 0,012 0,08 -0,02 0,056 1,405 4 3 0,396 1,147 1,147 1,147 11,93 0,012 0,08 -0,02 0,056 0,8 5 4 0,484 1,22 1,22 1,22 11,959 0,012 0,08 -0,02 0,056 1,552 6 5 0,175 1,232 1,232 1,232 11,892 0,012 0,08 -0,02 0,056 1,25 7 6 0,483 1,284 1,284 1,284 11,956 0,012 0,08 -0,02 0,056 0,706 8 7 0,394 1,236 1,236 1,236 11,915 0,012 0,08 -0,02 0,056 1,433 9 8 0,423 1,229 1,229 1,229 11,997 0,012 0,08 -0,02 0,056 1,52


(21)

91

Tabel B.12. Pengujian Keseluruhan Sistem Kondisi Pasang dengan Beban dan PWM Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 1,21 1,21 1,21 11,906 0,012 0,008 -0,02 0,056 -0,012 2 1 0,541 1,254 1,253 1,253 11,959 0,012 0,008 -0,02 0,056 0,818 3 2 0,53 1,234 1,23 1,234 11,921 0,012 0,008 -0,02 0,056 1,512 4 3 0,289 1,223 1,223 1,223 11,927 0,012 0,008 -0,02 0,056 0,911 5 4 0,593 1,261 1,26 1,261 12 0,012 0,008 -0,02 0,056 1,467 6 5 0,316 1,226 1,227 1,227 11,918 0,012 0,008 -0,02 0,056 1,437 7 6 0,463 1,232 1,231 1,231 11,956 0,012 0,008 -0,02 0,056 1,214 8 7 0,403 1,228 1,228 1,228 11,959 0,012 0,008 -0,02 0,056 1,586 9 8 0,269 1,232 1,232 1,232 11,956 0,012 0,008 -0,02 0,056 0,887


(22)

92

LAMPIRAN C

PEDOMAN PRAKTIKUM ENERGI BARU DAN TERBARUKAN

TOPIK OSCILLATING WATER COLUMN

1. Tujuan

 Mengetahui pengaplikasian pemanen air laut  Mengetahui cara kerja oscillating water coloumn

 Mengetahui bentuk dan fungsi oscillating water coloumn 2. Dasar Teori

Energi baru merupakan energi yang dihasilkan dari sesuatu yang baru, sedangkan energi terbarukan merupakan energi yang dapat dihasilkan secara terus menerus (dari alam). Sumber energi yang dipanen dapat berasal dari berbagai macam, diantaranya matahari,getaran,medan elektromagnet, udara, dan air.

Salah satu pengaplikasian yang dapat dilakukan pada air adalah dengan memanfaatkan ombak yang berada di laut. Diantaranya dengan memanfaatkan pasang surut air laut, memanfaatkan gelombang air laut, dan dapat pula memanfaatkan osilasi kolom air.

Osilasi kolom air atau yang biasa disebut Oscillating Water Coloumn adalah pemanenan energi yang memanfaatkan naik turun air dan memanfaatkan udara yang didalam ruangan untuk memutar sebuah turbin.

3. Alat Yang Dibutuhkan

 Container ukuran 72cm x 38cm x 34cm  Alat Pembuat Ombak

 Jack Banana  Turbin  Motor Bor


(23)

93  Power Supply 5V untuk pcDuino  5 unit ACS712

 Driver motor  Multimeter  Kabel VGA  Keyboard  Mouse

4. Cara Kerja Alat

Container yang terisi dengan air akan membentuk gelombang air seperti gelombang air laut oleh akibat alat pembuat gelombang bergerak. mengakibatkan air naik turun pada kolom osilasi. Air naik turun pada kolom osilasi akan menekan turbin melalui lubang kecil pada atas kolom osilasi. Putaran turbin akan memberikan nilai tegangan pada kutub + dan kutub -. Dari hasil pergerakan turbin yang menghasilkan energi baru yaitu energi listrik, akan disalurkan pada media penyimpanan energi listrik dengan menggunakan supercapacitor. Apabila energi yang dipanen sebagian atau penuh pada supercapacitor beban dapat dipasang dengan cara menekan tombol saklarnya. Beban yang digunakan adalah LED 1 watt. Setelah menekan tombol saklarnya yang semua off menjadi on maka beban LED 1 watt akan menyala.

5. Langkah Percobaan

a) Pasanglah semua komponen yang tersedia menjadi satu kesatuan.

b) Nyalakan Power Supply untuk mengaktifkan pcduino dan perangkat lainnya.

c) Mengamati dan mengukur tegangan pada keluaran generator, output boost, supercapacitor dan beban setiap 1 menit selama 8 menit.

d) Mengamati dan mengukur arus pada keluaran generator, output boost, supercapacitor dan beban setiap 1 menit selama 8 menit.

e) Mengamati dan mengukur kecepatan turbin

f) Ulangi langkah c, d dan e saat kondisi air pasang dan surut dengan kondisi PWM yang berbeda-beda. Asumsi pasang adalah tinggi permukaan air 8 cm dari bagian bawah


(24)

94

kolom osilasi. Asumsi Surut adalah tinggi permukaan air 1cm dari bagian bawah kolom osilasi. Pengukuran ketinggian air pasang dan surut pada kondisi air tenang. g) Menghitung efisiensi alat

Tabel C.1. Pengujian Keseluruhan Sistem Kondisi Surut tanpa Beban dengan PWM Cepat

Tabel C.2. Pengujian Keseluruhan Sistem Kondisi Surut dengan Beban dan PWM Cepat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,028 0,055 0,055 0,055 12 0,099 0,008 -0,02 0,056 -0,012 2 1 0,785 1,549 1,551 1,551 12 0,139 0,008 -0,02 0,068 2,072 3 2 0,562 2,527 2,527 2,527 11,959 0,159 0,012 -0,02 0,068 1,896 4 3 0,632 2,802 2,802 2,802 11,982 0,155 0,012 -0,02 0,068 2,129 5 4 0,708 3,116 3,115 3,116 11,978 0,159 0,016 -0,02 0,06 1,762 6 5 0,467 3,001 3,004 3,002 11,959 0,171 0,012 -0,02 0,068 2,301 7 6 0,844 3,044 3,044 3,044 11,959 0,179 0,016 -0,02 0,06 1,792 8 7 0,621 3,154 3,154 3,154 12 0,127 0,012 -0,02 0,06 2,218 9 8 0,75 3,055 3,057 3,057 11,959 0,119 0,016 -0,02 0,068 1,978

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 0,092 0,092 0,092 11,959 0,103 0,008 -0,02 0,056 -0,012 2 1 0,8 1,111 1,118 1,118 11,997 0,155 0,016 -0,02 0,06 2,026 3 2 0,538 1,945 1,945 1,945 11,997 0,167 0,016 -0,02 0,056 2,156 4 3 0,593 2,714 2,714 2,714 11,968 0,183 0,016 -0,02 0,056 1,795 5 4 0,878 3,837 3,837 3,837 11,997 0,139 0,016 -0,02 0,06 1,568 6 5 0,884 4,295 4,295 4,295 11,959 0,123 0,012 -0,02 0,06 1,978 7 6 1,022 4,55 4,55 4,55 11,962 0,175 0,012 -0,02 0,056 2,052 8 7 0,59 4,779 4,779 4,779 11,959 0,151 0,016 -0,02 0,06 2,385 9 8 0,503 4,883 4,883 4,883 12 0,139 0,012 -0,02 0,06 1,768 10 9 0,965 4,985 4,985 4,985 11,997 0,151 0,016 -0,02 0,06 2,024 11 10 0,977 4,987 4,987 4,987 11,959 0,167 0,012 -0,02 0,056 2,265 12 11 0,959 5 5 5 11,997 0,111 0,016 -0,02 0,06 2,043


(25)

95

Tabel C.3. Pengujian Keseluruhan Sistem Kondisi Surut tanpa Beban dengan PWM Sedang

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,028 0,072 0,072 0,072 11,959 0,099 0,008 -0,02 0,056 -0,012 2 1 0,278 0,418 0,418 0,418 11,997 0,139 0,016 -0,02 0,056 1,536 3 2 0,545 0,803 0,803 0,803 11,899 0,159 0,016 -0,02 0,06 1,932 4 3 0,343 1,265 1,265 1,265 11,992 0,155 0,016 -0,02 0,056 1,765 5 4 0,575 1,511 1,511 1,511 11,962 0,159 0,016 -0,02 0,06 1,812 6 5 0,265 1,749 1,749 1,749 11,959 0,171 0,012 -0,02 0,056 1,795 7 6 0,437 1,915 1,915 1,915 11,997 0,107 0,016 -0,02 0,056 1,884 8 7 0,327 2,111 2,111 2,111 11,959 0,183 0,016 -0,02 0,06 1,854 9 8 0,58 2,382 2,382 2,382 11,959 0,119 0,012 -0,02 0,06 1,659 10 9 0,311 2,597 2,597 2,597 11,959 0,111 0,012 -0,02 0,06 1,687 11 10 0,545 2,71 2,71 2,71 11,959 0,183 0,016 -0,02 0,06 1,881 12 11 0,378 2,822 2,822 2,822 11,959 0,139 0,012 -0,02 0,06 1,523 13 12 0,521 3,104 3,104 3,104 11,997 0,099 0,012 -0,02 0,056 1,911 14 13 0,264 3,223 3,223 3,223 11,862 0,103 0,012 -0,02 0,056 1,871 15 14 0,338 3,477 3,477 3,477 11,996 0,101 0,016 -0,02 0,06 1,415 16 15 0,488 3,681 3,681 3,681 11,959 0,173 0,016 -0,02 0,06 1,781 17 16 0,427 3,755 3,755 3,755 11,962 0,156 0,016 -0,02 0,056 1,985 18 17 0,517 3,958 3,958 3,958 11,899 0,159 0,012 -0,02 0,056 1,578 19 18 0,563 4,162 4,162 4,162 11,997 0,119 0,016 -0,02 0,06 2,05 20 19 0,552 4,301 4,301 4,301 11,992 0,139 0,016 -0,02 0,056 1,851 21 20 0,145 4,426 4,426 4,426 11,997 0,127 0,016 -0,02 0,056 1,799 22 21 0,287 4,684 4,684 4,684 11,982 0,177 0,012 -0,02 0,06 1,384 23 22 0,407 4,854 4,854 4,854 11,962 0,139 0,016 -0,02 0,056 1,824 24 23 0,392 4,969 4,969 4,969 11,959 0,179 0,012 -0,02 0,056 1,871 25 24 0,284 4,975 4,975 4,975 11,959 0,123 0,016 -0,02 0,056 1,628 26 25 0,526 4,982 4,982 4,982 11,959 0,181 0,016 -0,02 0,056 1,583


(26)

96

Tabel C.4. Pengujian Keseluruhan Sistem Kondisi Surut dengan Beban dan PWM Sedang

Tabel C.5. Pengujian Keseluruhan Sistem Kondisi Surut tanpa Beban dengan PWM Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 0,054 0,054 0,054 11,959 0,099 0,008 -0,02 0,056 -0,012 2 1 0,347 0,215 0,215 0,215 11,982 0,139 0,012 -0,02 0,06 1,329 3 2 0,541 0,421 0,421 0,421 11,959 0,159 0,016 -0,02 0,06 1,548 4 3 0,312 0,613 0,613 0,613 12 0,155 0,016 -0,02 0,056 1,429 5 4 0,145 0,844 0,844 0,844 12 0,159 0,016 -0,02 0,06 1,292 6 5 0,236 1,021 1,021 1,021 12 0,171 0,016 -0,02 0,056 1,616 7 6 0,522 1,244 1,244 1,244 12 0,107 0,012 -0,02 0,056 1,652 8 7 0,328 1,42 1,42 1,42 11,959 0,183 0,012 -0,02 0,056 1,412 9 8 0,289 1,627 1,627 1,627 11,982 0,119 0,012 -0,02 0,06 1,217 10 9 0,332 1,789 1,789 1,789 11,959 0,103 0,016 -0,02 0,056 1,658 11 10 0,475 1,878 1,878 1,878 11,997 0,111 0,016 -0,02 0,06 1,348 12 11 0,248 2,011 2,011 2,011 12 0,128 0,012 -0,02 0,056 1,666 13 12 0,587 2,245 2,245 2,245 11,997 0,103 0,012 -0,02 0,06 1,745 14 13 0,236 2,387 2,387 2,387 11,959 0,121 0,016 -0,02 0,06 1,315 15 14 0,154 2,445 2,445 2,445 11,962 0,099 0,016 -0,02 0,056 1,526 16 15 0,348 2,547 2,547 2,547 11,982 0,103 0,016 -0,02 0,06 1,64 17 16 0,246 2,671 2,671 2,671 11,997 0,099 0,012 -0,02 0,056 1,652 18 17 0,688 2,753 2,753 2,753 11,959 0,103 0,012 -0,02 0,06 1,329

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,029 0,085 0,085 0,085 11,959 0,099 0,008 -0,02 0,056 -0,008 2 1 0,521 0,552 0,552 0,552 11,959 0,155 0,008 -0,02 0,06 1,953 3 2 0,538 1,122 1,122 1,122 11,959 0,167 0,012 -0,02 0,056 1,759 4 3 0,593 1,865 1,865 1,865 11,959 0,123 0,012 -0,02 0,06 1,625 5 4 0,533 2,323 2,323 2,323 11,959 0,139 0,012 -0,02 0,056 1,354 6 5 0,264 2,674 2,674 2,674 11,959 0,123 0,012 -0,02 0,06 1,487 7 6 0,575 2,827 2,827 2,827 11,997 0,175 0,008 -0,02 0,06 1,824 8 7 0,512 2,955 2,955 2,955 11,962 0,151 0,012 -0,02 0,06 1,957 9 8 0,483 3,004 3,004 3,004 11,997 0,139 0,016 -0,02 0,06 1,667 10 9 0,548 2,998 2,998 2,998 11,962 0,151 0,012 -0,02 0,056 1,784 11 10 0,57 3,114 3,114 3,114 11,993 0,117 0,012 -0,02 0,06 1,845 12 11 0,314 3,007 3,007 3,007 11,898 0,111 0,016 -0,02 0,06 1,955 13 12 0,542 3,111 3,111 3,111 11,959 0,152 0,012 -0,02 0,056 1,346 14 13 0,489 3,152 3,152 3,152 11,959 0,147 0,016 -0,02 0,06 1,487


(27)

97

19 18 0,426 2,812 2,812 2,812 11,962 0,111 0,012 -0,02 0,056 1,754 20 19 0,478 2,942 2,942 2,942 11,959 0,123 0,012 -0,02 0,06 1,725 21 20 0,489 3,143 3,143 3,143 11,997 0,115 0,012 -0,02 0,06 1,548 22 21 0,423 3,255 3,255 3,255 11,959 0,107 0,016 -0,02 0,056 1,794 23 22 0,433 3,356 3,356 3,356 11,982 0,136 0,012 -0,02 0,056 1,597 24 23 0,492 3,558 3,558 3,558 11,962 0,107 0,012 -0,02 0,056 1,324 25 24 0,581 3,689 3,689 3,689 11,997 0,127 0,016 -0,02 0,06 1,624 26 25 0,146 3,787 3,787 3,787 11,997 0,111 0,016 -0,02 0,056 1,215 27 26 0,365 3,872 3,872 3,872 11,982 0,099 0,016 -0,02 0,056 1,675 28 27 0,158 3,958 3,958 3,958 11,959 0,103 0,012 -0,02 0,056 1,516 29 28 0,288 4,117 4,117 4,117 12 0,099 0,012 -0,02 0,06 1,246 30 29 0,554 4,289 4,289 4,289 11,997 0,101 0,012 -0,02 0,056 1,617 31 30 0,348 4,378 4,378 4,378 11,959 0,162 0,016 -0,02 0,06 1,785 32 31 0,471 4,477 4,477 4,477 11,962 0,153 0,016 -0,02 0,056 1,144 33 32 0,483 4,548 4,548 4,548 11,997 0,099 0,016 -0,02 0,056 1,662 34 33 0,401 4,598 4,598 4,598 11,997 0,157 0,012 -0,02 0,06 1,439 35 34 0,437 4,686 4,686 4,686 11,962 0,099 0,012 -0,02 0,056 1,201 36 35 0,305 4,712 4,712 4,712 11,959 0,123 0,012 -0,02 0,06 1,618 37 36 0,573 4,776 4,776 4,776 11,982 0,139 0,012 -0,02 0,06 1,672 38 37 0,112 4,814 4,814 4,814 11,959 0,99 0,016 -0,02 0,056 1,148 39 38 0,269 4,893 4,893 4,893 11,997 0,146 0,012 -0,02 0,06 1,623 40 39 0,343 4,923 4,923 4,923 11,959 0,101 0,012 -0,02 0,056 1,684 41 40 0,462 4,941 4,941 4,941 11,962 0,099 0,012 -0,02 0,06 1,741 42 41 0,512 4,947 4,947 4,947 11,997 0,101 0,016 -0,02 0,056 1,059 43 42 0,494 4,952 4,952 4,952 11,982 0,099 0,016 -0,02 0,06 1,469 44 43 0,415 4,956 4,956 4,956 11,997 0,134 0,012 -0,02 0,06 1,324 45 44 0,433 4,963 4,963 4,963 11,997 0,099 0,016 -0,02 0,056 1,492 46 45 0,264 4,971 4,971 4,971 12 0,119 0,016 -0,02 0,06 1,548 47 46 0,394 4,978 4,978 4,978 11,959 0,127 0,012 -0,02 0,056 1,483 48 47 0,562 4,983 4,983 4,983 11,982 0,099 0,012 -0,02 0,06 1,502 49 48 0,511 4,99 4,99 4,99 11,959 0,099 0,016 -0,02 0,06 1,68 50 49 0,423 4,997 4,997 4,997 12 0,137 0,016 -0,02 0,06 1,661


(28)

98

Tabel C.6. Pengujian Keseluruhan Sistem Kondisi Surut dengan Beban dan PWM Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,029 0,085 0,085 0,085 11,959 0,099 0,008 -0,02 0,056 -0,012 2 1 0,521 0,372 0,372 0,372 11,997 0,155 0,012 -0,02 0,056 1,235 3 2 0,538 0,678 0,678 0,678 11,959 0,167 0,016 -0,02 0,06 1,758 4 3 0,593 0,921 0,921 0,921 11,959 0,103 0,012 -0,02 0,06 1,518 5 4 0,533 1,189 1,189 1,189 12 0,139 0,016 -0,02 0,06 1,564 6 5 0,264 1,279 1,279 1,279 11,959 0,123 0,012 -0,02 0,056 1,681 7 6 0,575 1,51 1,51 1,51 12 0,175 0,016 -0,02 0,06 1,754 8 7 0,512 1,793 1,793 1,793 11,997 0,151 0,016 -0,02 0,06 1,715 9 8 0,483 1,961 1,961 1,961 11,959 0,139 0,016 -0,02 0,056 1,264 10 9 0,548 2,176 2,176 2,176 11,959 0,151 0,012 -0,02 0,06 1,716 11 10 0,57 2,315 2,315 2,315 11,962 0,099 0,016 -0,02 0,06 1,348 12 11 0,314 2,621 2,621 2,621 11,959 0,101 0,016 -0,02 0,06 1,694 13 12 0,542 2,898 2,898 2,898 11,982 0,147 0,012 -0,02 0,06 1,45 14 13 0,489 2,937 2,937 2,937 11,959 0,102 0,016 -0,02 0,056 1,77 15 14 0,542 3,056 3,056 3,056 11,959 0,152 0,016 -0,02 0,06 1,316 16 15 0,489 3,03 3,03 3,03 11,959 0,111 0,012 -0,02 0,056 1,482

Tabel C.7. Pengujian Keseluruhan Sistem Kondisi Pasang tanpa Beban dengan PWM Cepat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,028 0,043 0,043 0,043 11,965 0,099 0,008 -0,02 0,06 -0,012 2 1 0,75 0,664 0,664 0,664 11,962 0,107 0,016 -0,02 0,06 2,255 3 2 0,678 0,871 0,871 0,871 11,997 0,111 0,016 -0,02 0,06 1,596 4 3 0,564 1,164 1,165 1,161 11,987 0,147 0,016 -0,02 0,06 2,022 5 4 0,629 1,709 1,711 1,712 11,971 0,127 0,012 -0,02 0,06 1,962 6 5 0,63 1,928 1,93 1,928 11,977 0,151 0,016 -0,02 0,06 2,201 7 6 0,632 2,267 2,267 2,267 11,979 0,135 0,016 -0,02 0,06 1,699 8 7 0,497 2,626 2,623 2,624 11,982 0,163 0,012 -0,02 0,06 1,95 9 8 0,729 2,955 2,955 2,955 12 0,119 0,016 -0,02 0,06 2,229


(29)

99

Tabel C.8. Pengujian Keseluruhan Sistem Kondisi Pasang dengan Beban dan PWM Cepat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,022 0,085 0,085 0,085 11,959 0,099 0,008 -0,02 0,056 -0,012 2 1 0,775 0,783 0,783 0,783 12 0,147 0,016 -0,02 0,068 2,184 3 2 0,43 1,271 1,271 1,273 11,968 0,131 0,012 -0,08 0,068 1,577 4 3 0,444 1,753 1,752 1,751 11,974 0,115 0,016 -0,02 0,06 1,542 5 4 0,551 2,026 2,025 2,025 11,977 0,103 0,016 -0,02 0,06 1,636 6 5 0,624 2,233 2,234 2,234 11,979 0,147 0,016 -0,02 0,056 2,217 7 6 0,62 2,634 2,635 2,637 12 0,123 0,016 -0,02 0,06 2,026 8 7 0,851 2,834 2,833 2,835 12 0,135 0,012 -0,02 0,056 1,685 9 8 0,626 2,915 2,918 2,912 11,982 0,151 0,016 -0,02 0,068 2,245

Tabel C.9. Pengujian Keseluruhan Sistem Kondisi Pasang tanpa Beban dengan PWM Sedang

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,028 1,247 1,247 1,247 11,959 0,088 0,016 -0,02 0,06 -0,008 2 1 0,542 1,247 1,247 1,247 11,959 0,131 0,012 -0,02 0,064 1,811 3 2 0,611 1,684 1,684 1,684 11,956 0,142 0,012 -0,02 0,064 1,349 4 3 0,619 2 2 2 11,985 0,135 0,012 -0,02 0,068 1,465 5 4 0,508 2,543 2,543 2,543 11,959 0,108 0,016 -0,02 0,064 1,496 6 5 0,615 2,696 2,696 2,696 11,956 0,139 0,012 -0,02 0,064 1,286 7 6 0,663 2,745 2,745 2,745 11,956 0,103 0,016 -0,02 0,064 1,425 8 7 0,354 2,81 2,81 2,81 11,959 0,128 0,016 -0,02 0,064 1,166 9 8 0,275 2,853 2,853 2,853 11,959 0,111 0,012 -0,02 0,064 1,325


(30)

100

Tabel C.10. Pengujian Keseluruhan Sistem Kondisi Pasang dengan Beban dan PWM Sedang

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 2,812 2,812 2,812 2,812 0,099 0,012 -0,02 0,06 -0,08 2 1 0,673 2,886 2,886 2,886 2,886 0,111 0,012 -0,02 0,068 1,079 3 2 0,438 2,932 2,932 2,932 2,932 0,103 0,016 -0,02 0,068 1,512 4 3 0,528 3,016 3,016 3,016 3,016 0,127 0,012 -0,02 0,068 1,731 5 4 0,683 3,03 3,03 3,03 3,03 0,135 0,016 -0,02 0,068 1,067 6 5 0,758 2,894 2,894 2,894 2,894 0,103 0,012 -0,02 0,068 1,309 7 6 0,734 2,902 2,902 2,902 2,902 0,127 0,016 -0,02 0,068 1,636 8 7 0,69 2,957 2,957 2,957 2,957 0,111 0,012 -0,02 0,068 1,202 9 8 0,675 2,854 2,854 2,854 2,854 0,127 0,016 -0,02 0,068 1,823

Tabel C.11. Pengujian Keseluruhan Sistem Kondisi Pasang tanpa Beban dengan PWM Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 1,085 1,085 1,085 11,959 0,012 0,08 -0,02 0,056 -0,012 2 1 0,384 1,115 1,115 1,115 11,889 0,012 0,08 -0,02 0,056 1,333 3 2 0,421 1,134 1,134 1,134 11,915 0,012 0,08 -0,02 0,056 1,405 4 3 0,396 1,147 1,147 1,147 11,93 0,012 0,08 -0,02 0,056 0,8 5 4 0,484 1,22 1,22 1,22 11,959 0,012 0,08 -0,02 0,056 1,552 6 5 0,175 1,232 1,232 1,232 11,892 0,012 0,08 -0,02 0,056 1,25 7 6 0,483 1,284 1,284 1,284 11,956 0,012 0,08 -0,02 0,056 0,706 8 7 0,394 1,236 1,236 1,236 11,915 0,012 0,08 -0,02 0,056 1,433 9 8 0,423 1,229 1,229 1,229 11,997 0,012 0,08 -0,02 0,056 1,52


(31)

101

Tabel C.12. Pengujian Keseluruhan Sistem Kondisi Pasang dengan Beban dan PWM Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 1,21 1,21 1,21 11,906 0,012 0,008 -0,02 0,056 -0,012 2 1 0,541 1,254 1,253 1,253 11,959 0,012 0,008 -0,02 0,056 0,818 3 2 0,53 1,234 1,23 1,234 11,921 0,012 0,008 -0,02 0,056 1,512 4 3 0,289 1,223 1,223 1,223 11,927 0,012 0,008 -0,02 0,056 0,911 5 4 0,593 1,261 1,26 1,261 12 0,012 0,008 -0,02 0,056 1,467 6 5 0,316 1,226 1,227 1,227 11,918 0,012 0,008 -0,02 0,056 1,437 7 6 0,463 1,232 1,231 1,231 11,956 0,012 0,008 -0,02 0,056 1,214 8 7 0,403 1,228 1,228 1,228 11,959 0,012 0,008 -0,02 0,056 1,586 9 8 0,269 1,232 1,232 1,232 11,956 0,012 0,008 -0,02 0,056 0,887

6. Analisa Data

 Pada OWC ini energi yang dipanen dengan memanfaatkan udara pada kolom osilasi naik turun air berfungsi memutar turbin

 Semakin besar jarak gerakan naik turun air maka udara yang dihasilkan untuk memutar turbin pun semakin besar.

 Udara yang dimanfaatkan untuk memutar turbin harus difokuskan kedalam satu titik agar udara tidak terbuang

 Permukaan air minimal harus lebih tinggi 1 cm pada bagian bawah kolom osilasi supaya udara yang masuk kolom osilasi dapat terdorong dengan air.

 Waktu yang dibutuhkan untuk pengisian supercapacitor

7. Gambar Alat


(32)

102

8. Kesimpulan

 Air laut dapat dipanen dengan salah satu aplikasi Oscillating Water Column.

 Oscillating Water Column memiliki prinsip kerja memanfaatkan naik turun air dan memfokuskan udara pada kolom osilasi untuk memutar turbin.

 Bentuk dari Oscillating Water Column ini adalah seperti separuh trapesium dan di desain untuk mengurung udara agar tidak keluar dari kolom osilasi.

 Cara kerja yang mendasar OWC memanfaat energi kinetik air menjadi energi angin/udara menjadi energi listrik.

 Fungsi dari OWC ini untuk menghasilkan energi berupa tegangan listrik

 OWC dapat diaplikasikan di pantai selatan yang memiliki gelombang air laut yang besar katimbang pantai utara.


(1)

97

19 18 0,426 2,812 2,812 2,812 11,962 0,111 0,012 -0,02 0,056 1,754 20 19 0,478 2,942 2,942 2,942 11,959 0,123 0,012 -0,02 0,06 1,725 21 20 0,489 3,143 3,143 3,143 11,997 0,115 0,012 -0,02 0,06 1,548 22 21 0,423 3,255 3,255 3,255 11,959 0,107 0,016 -0,02 0,056 1,794 23 22 0,433 3,356 3,356 3,356 11,982 0,136 0,012 -0,02 0,056 1,597 24 23 0,492 3,558 3,558 3,558 11,962 0,107 0,012 -0,02 0,056 1,324 25 24 0,581 3,689 3,689 3,689 11,997 0,127 0,016 -0,02 0,06 1,624 26 25 0,146 3,787 3,787 3,787 11,997 0,111 0,016 -0,02 0,056 1,215 27 26 0,365 3,872 3,872 3,872 11,982 0,099 0,016 -0,02 0,056 1,675 28 27 0,158 3,958 3,958 3,958 11,959 0,103 0,012 -0,02 0,056 1,516 29 28 0,288 4,117 4,117 4,117 12 0,099 0,012 -0,02 0,06 1,246 30 29 0,554 4,289 4,289 4,289 11,997 0,101 0,012 -0,02 0,056 1,617 31 30 0,348 4,378 4,378 4,378 11,959 0,162 0,016 -0,02 0,06 1,785 32 31 0,471 4,477 4,477 4,477 11,962 0,153 0,016 -0,02 0,056 1,144 33 32 0,483 4,548 4,548 4,548 11,997 0,099 0,016 -0,02 0,056 1,662 34 33 0,401 4,598 4,598 4,598 11,997 0,157 0,012 -0,02 0,06 1,439 35 34 0,437 4,686 4,686 4,686 11,962 0,099 0,012 -0,02 0,056 1,201 36 35 0,305 4,712 4,712 4,712 11,959 0,123 0,012 -0,02 0,06 1,618 37 36 0,573 4,776 4,776 4,776 11,982 0,139 0,012 -0,02 0,06 1,672 38 37 0,112 4,814 4,814 4,814 11,959 0,99 0,016 -0,02 0,056 1,148 39 38 0,269 4,893 4,893 4,893 11,997 0,146 0,012 -0,02 0,06 1,623 40 39 0,343 4,923 4,923 4,923 11,959 0,101 0,012 -0,02 0,056 1,684 41 40 0,462 4,941 4,941 4,941 11,962 0,099 0,012 -0,02 0,06 1,741 42 41 0,512 4,947 4,947 4,947 11,997 0,101 0,016 -0,02 0,056 1,059 43 42 0,494 4,952 4,952 4,952 11,982 0,099 0,016 -0,02 0,06 1,469 44 43 0,415 4,956 4,956 4,956 11,997 0,134 0,012 -0,02 0,06 1,324 45 44 0,433 4,963 4,963 4,963 11,997 0,099 0,016 -0,02 0,056 1,492 46 45 0,264 4,971 4,971 4,971 12 0,119 0,016 -0,02 0,06 1,548 47 46 0,394 4,978 4,978 4,978 11,959 0,127 0,012 -0,02 0,056 1,483 48 47 0,562 4,983 4,983 4,983 11,982 0,099 0,012 -0,02 0,06 1,502 49 48 0,511 4,99 4,99 4,99 11,959 0,099 0,016 -0,02 0,06 1,68 50 49 0,423 4,997 4,997 4,997 12 0,137 0,016 -0,02 0,06 1,661


(2)

98 Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,029 0,085 0,085 0,085 11,959 0,099 0,008 -0,02 0,056 -0,012 2 1 0,521 0,372 0,372 0,372 11,997 0,155 0,012 -0,02 0,056 1,235 3 2 0,538 0,678 0,678 0,678 11,959 0,167 0,016 -0,02 0,06 1,758 4 3 0,593 0,921 0,921 0,921 11,959 0,103 0,012 -0,02 0,06 1,518 5 4 0,533 1,189 1,189 1,189 12 0,139 0,016 -0,02 0,06 1,564 6 5 0,264 1,279 1,279 1,279 11,959 0,123 0,012 -0,02 0,056 1,681 7 6 0,575 1,51 1,51 1,51 12 0,175 0,016 -0,02 0,06 1,754 8 7 0,512 1,793 1,793 1,793 11,997 0,151 0,016 -0,02 0,06 1,715 9 8 0,483 1,961 1,961 1,961 11,959 0,139 0,016 -0,02 0,056 1,264 10 9 0,548 2,176 2,176 2,176 11,959 0,151 0,012 -0,02 0,06 1,716 11 10 0,57 2,315 2,315 2,315 11,962 0,099 0,016 -0,02 0,06 1,348 12 11 0,314 2,621 2,621 2,621 11,959 0,101 0,016 -0,02 0,06 1,694 13 12 0,542 2,898 2,898 2,898 11,982 0,147 0,012 -0,02 0,06 1,45 14 13 0,489 2,937 2,937 2,937 11,959 0,102 0,016 -0,02 0,056 1,77 15 14 0,542 3,056 3,056 3,056 11,959 0,152 0,016 -0,02 0,06 1,316 16 15 0,489 3,03 3,03 3,03 11,959 0,111 0,012 -0,02 0,056 1,482

Tabel C.7. Pengujian Keseluruhan Sistem Kondisi Pasang tanpa Beban dengan PWM Cepat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,028 0,043 0,043 0,043 11,965 0,099 0,008 -0,02 0,06 -0,012 2 1 0,75 0,664 0,664 0,664 11,962 0,107 0,016 -0,02 0,06 2,255 3 2 0,678 0,871 0,871 0,871 11,997 0,111 0,016 -0,02 0,06 1,596 4 3 0,564 1,164 1,165 1,161 11,987 0,147 0,016 -0,02 0,06 2,022 5 4 0,629 1,709 1,711 1,712 11,971 0,127 0,012 -0,02 0,06 1,962 6 5 0,63 1,928 1,93 1,928 11,977 0,151 0,016 -0,02 0,06 2,201 7 6 0,632 2,267 2,267 2,267 11,979 0,135 0,016 -0,02 0,06 1,699 8 7 0,497 2,626 2,623 2,624 11,982 0,163 0,012 -0,02 0,06 1,95 9 8 0,729 2,955 2,955 2,955 12 0,119 0,016 -0,02 0,06 2,229


(3)

99

Tabel C.8. Pengujian Keseluruhan Sistem Kondisi Pasang dengan Beban dan PWM Cepat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,022 0,085 0,085 0,085 11,959 0,099 0,008 -0,02 0,056 -0,012 2 1 0,775 0,783 0,783 0,783 12 0,147 0,016 -0,02 0,068 2,184 3 2 0,43 1,271 1,271 1,273 11,968 0,131 0,012 -0,08 0,068 1,577 4 3 0,444 1,753 1,752 1,751 11,974 0,115 0,016 -0,02 0,06 1,542 5 4 0,551 2,026 2,025 2,025 11,977 0,103 0,016 -0,02 0,06 1,636 6 5 0,624 2,233 2,234 2,234 11,979 0,147 0,016 -0,02 0,056 2,217 7 6 0,62 2,634 2,635 2,637 12 0,123 0,016 -0,02 0,06 2,026 8 7 0,851 2,834 2,833 2,835 12 0,135 0,012 -0,02 0,056 1,685 9 8 0,626 2,915 2,918 2,912 11,982 0,151 0,016 -0,02 0,068 2,245

Tabel C.9. Pengujian Keseluruhan Sistem Kondisi Pasang tanpa Beban dengan PWM Sedang

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,028 1,247 1,247 1,247 11,959 0,088 0,016 -0,02 0,06 -0,008 2 1 0,542 1,247 1,247 1,247 11,959 0,131 0,012 -0,02 0,064 1,811 3 2 0,611 1,684 1,684 1,684 11,956 0,142 0,012 -0,02 0,064 1,349 4 3 0,619 2 2 2 11,985 0,135 0,012 -0,02 0,068 1,465 5 4 0,508 2,543 2,543 2,543 11,959 0,108 0,016 -0,02 0,064 1,496 6 5 0,615 2,696 2,696 2,696 11,956 0,139 0,012 -0,02 0,064 1,286 7 6 0,663 2,745 2,745 2,745 11,956 0,103 0,016 -0,02 0,064 1,425 8 7 0,354 2,81 2,81 2,81 11,959 0,128 0,016 -0,02 0,064 1,166 9 8 0,275 2,853 2,853 2,853 11,959 0,111 0,012 -0,02 0,064 1,325


(4)

100 Sedang

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 2,812 2,812 2,812 2,812 0,099 0,012 -0,02 0,06 -0,08 2 1 0,673 2,886 2,886 2,886 2,886 0,111 0,012 -0,02 0,068 1,079 3 2 0,438 2,932 2,932 2,932 2,932 0,103 0,016 -0,02 0,068 1,512 4 3 0,528 3,016 3,016 3,016 3,016 0,127 0,012 -0,02 0,068 1,731 5 4 0,683 3,03 3,03 3,03 3,03 0,135 0,016 -0,02 0,068 1,067 6 5 0,758 2,894 2,894 2,894 2,894 0,103 0,012 -0,02 0,068 1,309 7 6 0,734 2,902 2,902 2,902 2,902 0,127 0,016 -0,02 0,068 1,636 8 7 0,69 2,957 2,957 2,957 2,957 0,111 0,012 -0,02 0,068 1,202 9 8 0,675 2,854 2,854 2,854 2,854 0,127 0,016 -0,02 0,068 1,823

Tabel C.11. Pengujian Keseluruhan Sistem Kondisi Pasang tanpa Beban dengan PWM Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 1,085 1,085 1,085 11,959 0,012 0,08 -0,02 0,056 -0,012 2 1 0,384 1,115 1,115 1,115 11,889 0,012 0,08 -0,02 0,056 1,333 3 2 0,421 1,134 1,134 1,134 11,915 0,012 0,08 -0,02 0,056 1,405 4 3 0,396 1,147 1,147 1,147 11,93 0,012 0,08 -0,02 0,056 0,8 5 4 0,484 1,22 1,22 1,22 11,959 0,012 0,08 -0,02 0,056 1,552 6 5 0,175 1,232 1,232 1,232 11,892 0,012 0,08 -0,02 0,056 1,25 7 6 0,483 1,284 1,284 1,284 11,956 0,012 0,08 -0,02 0,056 0,706 8 7 0,394 1,236 1,236 1,236 11,915 0,012 0,08 -0,02 0,056 1,433 9 8 0,423 1,229 1,229 1,229 11,997 0,012 0,08 -0,02 0,056 1,52


(5)

101

Tabel C.12. Pengujian Keseluruhan Sistem Kondisi Pasang dengan Beban dan PWM Lambat

No Waktu Tegangan (V) Arus (A)

(menit) Generator Boost SC Beban Motor Generator Boost SC Beban Motor 1 0 0,027 1,21 1,21 1,21 11,906 0,012 0,008 -0,02 0,056 -0,012 2 1 0,541 1,254 1,253 1,253 11,959 0,012 0,008 -0,02 0,056 0,818 3 2 0,53 1,234 1,23 1,234 11,921 0,012 0,008 -0,02 0,056 1,512 4 3 0,289 1,223 1,223 1,223 11,927 0,012 0,008 -0,02 0,056 0,911 5 4 0,593 1,261 1,26 1,261 12 0,012 0,008 -0,02 0,056 1,467 6 5 0,316 1,226 1,227 1,227 11,918 0,012 0,008 -0,02 0,056 1,437 7 6 0,463 1,232 1,231 1,231 11,956 0,012 0,008 -0,02 0,056 1,214 8 7 0,403 1,228 1,228 1,228 11,959 0,012 0,008 -0,02 0,056 1,586 9 8 0,269 1,232 1,232 1,232 11,956 0,012 0,008 -0,02 0,056 0,887

6. Analisa Data

 Pada OWC ini energi yang dipanen dengan memanfaatkan udara pada kolom osilasi naik turun air berfungsi memutar turbin

 Semakin besar jarak gerakan naik turun air maka udara yang dihasilkan untuk memutar turbin pun semakin besar.

 Udara yang dimanfaatkan untuk memutar turbin harus difokuskan kedalam satu titik agar udara tidak terbuang

 Permukaan air minimal harus lebih tinggi 1 cm pada bagian bawah kolom osilasi supaya udara yang masuk kolom osilasi dapat terdorong dengan air.

 Waktu yang dibutuhkan untuk pengisian supercapacitor 7. Gambar Alat


(6)

102 8. Kesimpulan

 Air laut dapat dipanen dengan salah satu aplikasi Oscillating Water Column.

 Oscillating Water Column memiliki prinsip kerja memanfaatkan naik turun air dan memfokuskan udara pada kolom osilasi untuk memutar turbin.

 Bentuk dari Oscillating Water Column ini adalah seperti separuh trapesium dan di desain untuk mengurung udara agar tidak keluar dari kolom osilasi.

 Cara kerja yang mendasar OWC memanfaat energi kinetik air menjadi energi angin/udara menjadi energi listrik.

 Fungsi dari OWC ini untuk menghasilkan energi berupa tegangan listrik

 OWC dapat diaplikasikan di pantai selatan yang memiliki gelombang air laut yang besar katimbang pantai utara.


Dokumen yang terkait

Institutional Repository | Satya Wacana Christian University: Alat Peraga Oscillating Water Column untuk Matakuliah Energi Baru dan Terbarukan

0 0 17

Institutional Repository | Satya Wacana Christian University: Alat Peraga Oscillating Water Column untuk Matakuliah Energi Baru dan Terbarukan T1 612010023 BAB I

0 0 4

Institutional Repository | Satya Wacana Christian University: Alat Peraga Oscillating Water Column untuk Matakuliah Energi Baru dan Terbarukan T1 612010023 BAB II

0 1 15

Institutional Repository | Satya Wacana Christian University: Alat Peraga Oscillating Water Column untuk Matakuliah Energi Baru dan Terbarukan T1 612010023 BAB IV

0 0 26

Institutional Repository | Satya Wacana Christian University: Alat Peraga Oscillating Water Column untuk Matakuliah Energi Baru dan Terbarukan T1 612010023 BAB V

0 0 2

Institutional Repository | Satya Wacana Christian University: Alat Peraga Energi Terbarukan Horizontal Axis Wind Turbine

0 0 14

Institutional Repository | Satya Wacana Christian University: Alat Peraga Mata Kuliah Energi Baru dan Terbarukan "Marine Current Turbines"

0 0 12

Institutional Repository | Satya Wacana Christian University: Alat Peraga Mata Kuliah Energi Baru dan Terbarukan "Marine Current Turbines" T1 612011802 BAB I

0 0 2

Institutional Repository | Satya Wacana Christian University: Alat Peraga Mata Kuliah Energi Baru dan Terbarukan "Marine Current Turbines"

0 0 7

Institutional Repository | Satya Wacana Christian University: Penyusunan Alat Peraga untuk Matakuliah Elektronika Daya

0 0 12