This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Firmware of the Project: | |
/* | |
Name of Project : IoT Based Weather Monitoring System | |
Target Device : ESP8266 | |
Firmware : NodeMCU 1.0 Firmware | |
Clock Frequency : 80MHz | |
UART Baud Rate : 115200 | |
Flash Size : 4 M (3M SPIFFS) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%Find Ybus Admittance Matrix(any number of Bus) | |
%I am used 3 Bus and , 2 bus ans 3 bus are not connected | |
clc | |
clear | |
% |FromBus|ToBus|Impedance|LineCharging| | |
d = [ 1 2 .4j -20j ; | |
1 3 .25j -50j; | |
2 3 0j 0j ; ]; | |
fb = d(:,1); tb = d(:,2); | |
y = 1./d(:,3); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name of Project : To Design an Internet of Things Based Electrical Load Control System to Minimize the Wastage of Electrical Power of Public Places | |
Target Device : ESP-12E Module | |
Firmware : NodeMCU 1.0 Firmware | |
Clock Frequency : 80MHz | |
UART Baud Rate : 115200 | |
Flash Size : 4M (3M SPIFFS) | |
Last Update : 4:08PM, 12 May, 2017 (Tested) | |
*/ |