SlideShare a Scribd company logo
International
OPEN

Journal

ACCESS

Of Modern Engineering Research (IJMER)

Space Craft Power System Implementation using Neural Network
Savithra B.1, Ajay M. P.2
1

(Masters in VLSI Design, Sri Shakthi Institute of Engineering and Technology, India)
(Department of Electronics and Communication Engineering, Sri Shakthi Institute of Engineering and
Technology, India)

2

ABSTRACT: The usage of renewable source of energy is increasing in recent days. This is widely used
in the spacecrafts for the power system built there. The power system of a spacecraft can be simulated
using artificial intelligence. Designing and implementing intelligent systems has become a crucial factor
for the innovation and development of better products of space technologies. The artificial neural network
is used in implementing non-linear problems. The weights for the neural networks are calculated using
MATLAB-SIMULINK and the architecture of the design can be programmed in VHDL. The multilayer
perceptron model is used for implementing the generator, controller and the battery. Back propagation
algorithm is used in modeling this network since the error can be reduced significantly.

Keywords: Spacecraft, Artificial Neural Network, VHDL.
I.

Introduction

A spacecraft is a vehicle, vessel or machine which is designed to fly in outer space. Spacecraft are used
for a variety of purposes. Some applications in which spacecraft are used are communications, earth
observation, meteorology, navigation, planetary exploration and transportation of humans and cargo. Spacecraft
need an electrical power generation and distribution subsystem for powering the various spacecraft subsystems.
The source for power available in the world nowadays are becoming very less. There are different technologies
employed in power production. Photovoltaic are best known as a method for generating electric power by using
solar cells to convert energy from the sun into a flow of electrons.
The Number of electronic applications using artificial neural network based solutions has increased
considerably in the last few years. The main advantages of using ANN algorithms are simplifying the
complicated algorithms, reducing heavy computation demands and improving fault tolerance.
The main objective is developing the photovoltaic simulator for the generating the power in the
spacecraft. Several components are used in this simulation. An MLP(Multi-Layer Perceptron) is modeled for
simulating each component of the system. After modeling an MLP the architecture of each component can be
programmed using VHDL. The modeling of the MLP can be done with MATLAB-SIMULINK. The algorithm
used in this modeling back-propagation which reduces the error significantly.
The paper is organized as follows: Section two gives the clear architecture of the system. Artificial
Neural Network structure and the model is described briefly. Section four shows the implementation of the
system. And section five gives the simulation results.

II.

Architecture of the Power System

The block given in fig. 1 shows the complete architecture of the system. The components used in
modeling this system are PV generator, Controller and a Battery. The PV generator is used to generate the
current from the solar panel. This can be modeled with neural networks and the architecture of this generator
can be programmed in VHDL. The battery is also modeled using MLP. The battery consists of accumulators.
Each accumulator can deliver 2V.
Solar panel

Generator

Load

Controller

Battery

Figure 1 Block diagram of the power system
| IJMER | ISSN: 2249–6645 |

www.ijmer.com

| Vol. 4 | Iss. 1 | Jan. 2014 |92|
Space Craft Power System Implementation using Neural Network
The controller modeling is also done with MLP. The controller is used to monitor the current generated
by the generator module. The design of the controller[2] is shown in the fig. 2.
Ipv
+
E

IL

Battery
System

NN Controller
+
IB

IL

Figure 2 Block Diagram of the Controller
This controller is used in the power system of [1] instead of a regulator. Since the number of hidden
layers and neurons in the controller is minimum the number of calculations can be reduced and the speed of the
system will be improved.

III.

Artificial Neural Networks

Artificial neural networks are information-processing systems that have the performance characteristics
common to biological neurons. The neural network represents a network with a finite number of layers
consisting of solitary elements that are similar to neurons with different types of connections between layers.
The number of neurons in the layers is selected to be sufficient for the provision of the required problem solving
quality. The number of layers is desired to be minimal in order to decrease the problem solving time. The
structure of the neural network is shown in the fig. 3.
The weight updating is the major calculation in the neural networks. The neural network can be
mathematically represented as given in the equation below.
𝑦 = 𝑓 𝑦𝑗
(1)

𝑦𝑗 =

𝑛
𝑖=1

𝑥𝑖 𝑤𝑖 + 𝑏
(2)
Xi is the input of the network. Wi is the weight co-efficient. B is the bias. y is the output of the neuron
which is given by the f(x). f(x) is called the activation function. This activation function is a non-linear function
that is widely used in feed-forward calculations of the algorithm.
𝑓 𝑦𝑗 =

2

(3)
−2𝑦 𝑗
(1+𝑒
)−1

Figure 3 Neural Network Model
The main use of this neural network in the electronic applications is to reduce the error of the system.
There are many algorithms designed for the implementation of the neural networks. The main algorithm that is
widely used is the back-propagation algorithm which reduces the error significantly.

IV.

Implementing the System

Generator: The PV generator can be designed with the artificial neural networks. The photovoltaic
source from the solar panel is given to the generator. The input to the generator is solar radiation(H) and
ambient temperature(Ta). The output of this will be voltage (Vpv) and current(Ipv).
Voltage and the current is the function of Temperature and radiation. It can be given by

𝑉𝑝 𝑣 , 𝐼 𝑝𝑣 = 𝑓(𝑇 𝑎 , 𝐻) (4)
| IJMER | ISSN: 2249–6645 |

www.ijmer.com

| Vol. 4 | Iss. 1 | Jan. 2014 |93|
Space Craft Power System Implementation using Neural Network
The neural network model for this contains an input layer, an output layer and two hidden layers. First
hidden layer has seven neurons and second has nine neurons. The neural network model of the generator is
given below with the inputs and outputs.

Figure 4 MLP Generator Model
Controller: the controller (Fig. 5 designing is the major part in the power system. Because it decides
how the current generated from the solar panel should be utilized. The working of the controller will be disused
briefly, before that the inputs for the controller is the error (E) and the load current (IL). The load current is the
current value that is required by the system usage. That can be fixed manually.
The neural network model of controller is given below. This has a input layer, a output layer and a
hidden layer with three neurons.

Figure 5 MLP Controller Model
The working of the controller is given in the fig. 6 as a flow chart.

Figure 6 Flow chart of the working of controller
| IJMER | ISSN: 2249–6645 |

www.ijmer.com

| Vol. 4 | Iss. 1 | Jan. 2014 |94|
Space Craft Power System Implementation using Neural Network
Battery: The battery is also designed with a multilayer neural network. The battery is used to store the
excess current from the generator. The stored current can be further used in the eclipse time. The input data for
the battery sub-system are the ambient temperature (Ta) the current coming from the regulator to battery(Ir).
The output data is the battery voltage (Vb). The architecture of the battery consists of series of accumulators that
can deliver 2V current.
The neural network design of the battery is given below in fig. 7.

Fig. 7 MLP model of Battery
The design consists of an input layer, an output layer and three hidden layers. There are fourteen
neurons in the first hidden layer, sixteen neurons in second hidden layer and ten neurons in second hidden layer.

I. RESULT
The ANN of each component is first modeled in the MATLAB-SIMULINK and the error of is
calculated. The calculation of error is shown in the figure given below. This is the MATLAB command window
with the calculations of error.

Figure 8 Error and the weights calculated in MATLAB for ANN
So finally the weight matrix and the error can be calculated. Instead of calculating this each time the
results can be saved in the .mat file which is the matrix file. That can be used further while programming the
architecture of each component.
The architecture of each component is developed in MODELSIM. The simulation results are given
below.

| IJMER | ISSN: 2249–6645 |

www.ijmer.com

| Vol. 4 | Iss. 1 | Jan. 2014 |95|
Space Craft Power System Implementation using Neural Network

Figure 9 Simularion of MLP PV Generator in MODELSIM

Fig. 10 Simulation of MLP Controller

Fig. 11 Simulation of MLP PV Battery in MODELSIM

V.

Conclusion

The simulation for a power system in spacecraft using neural networks is done. The advantage of using
neural networks for this implementation is to improve the speed of the process and to solve the non-linear
problems. A controller is first designed which decides how to utilize the current from the solar panel. The
simulation of this architecture is done using ModelSim. The ANN’s are simulated in MATLAB. The algorithm
used for modeling the ANN is back propagation so the error can be minimum. The MATLAB is used for
mathematical calculations and ModelSim for architecture development. The performance of this process can be
| IJMER | ISSN: 2249–6645 |

www.ijmer.com

| Vol. 4 | Iss. 1 | Jan. 2014 |96|
Space Craft Power System Implementation using Neural Network
improved by reducing the number of hidden layers. Since the number of hidden layers increases the calculation
increases which consumes more time. The utilization of solar power efficiently is the major part in this design.
When the calculation speed increases the process of obtaining the current can also be improved. The suns
movement varies in space often, so the power system speed must be improved.

References
[1]
[2]
[3]
[4]
[5]
[6]
[7]

Mellit, H. Mekki, A. Messai, H. Salhi, FPGA-based implementation of an intelligent simulator for stand-alone
photovoltaic system, Expert Systems with Applications 37,2010
Hanaa T. El-Madany, Faten H. Fahmy, Ninet M. A. El-Rahman, and Hassen T. Dorrah., “Spacecraft Neural Network
Control System Design using FPGA”, World Academy of Science, Engineering and Technology, 2011.
Amos R. Omondi, and Jagath C. Rajapakse, "Power System Implementations of Neural Networks", Springer
publisher, 2006.
H. Mekki, A. Mellit, H.Salhi, and B. Khaled, “Modeling and simulation of photovoltaic panel based on artificial
neural networks and VHDL language”, IEEE 2007.
Moufdi Hadjab, Smail Berrah and Hamza Abid, Neural network for modeling solar panel, International Journal of
Energy, Issue 1, Vol. 6, 2012.
Hanaa T. El-Madany, Faten H. Fahmy, Ninet M. A. El-Rahman, and Hassen T. Dorrah., “Spacecraft Neural Network
Control System Design using FPGA”, World Academy of Science, Engineering and Technology, 2011.
Mehmet Tukel And Mustak Erhan Yalcin, "A New Architecture for Cellular Neural Network on Reconfigurable
Hardware with an Advance Memory Allocation Method, in proc. of IEEE 2010 12th International Workshop on
Cellular Nanoscale Networks and their Applications.

| IJMER | ISSN: 2249–6645 |

www.ijmer.com

| Vol. 4 | Iss. 1 | Jan. 2014 |97|

More Related Content

What's hot

Design of Dual Axis Solar Tracker System Based on Fuzzy Inference Systems
Design of Dual Axis Solar Tracker System Based on Fuzzy Inference Systems Design of Dual Axis Solar Tracker System Based on Fuzzy Inference Systems
Design of Dual Axis Solar Tracker System Based on Fuzzy Inference Systems
ijscai
 
Automated Solar Tracking System for Efficient Energy Utilization
Automated Solar Tracking System for Efficient Energy UtilizationAutomated Solar Tracking System for Efficient Energy Utilization
Automated Solar Tracking System for Efficient Energy Utilization
vivatechijri
 
Road Network Extraction using Satellite Imagery.
Road Network Extraction using Satellite Imagery.Road Network Extraction using Satellite Imagery.
Road Network Extraction using Satellite Imagery.
SUMITRAJ312049
 
Solar power forecasting report
Solar power forecasting reportSolar power forecasting report
Solar power forecasting report
Gaurav Singh
 
IMPLEMENTATION OF UNSIGNED MULTIPLIER USING MODIFIED CSLA
IMPLEMENTATION OF UNSIGNED MULTIPLIER USING MODIFIED CSLAIMPLEMENTATION OF UNSIGNED MULTIPLIER USING MODIFIED CSLA
IMPLEMENTATION OF UNSIGNED MULTIPLIER USING MODIFIED CSLA
eeiej_journal
 
Eeuc111
Eeuc111Eeuc111
A cost effective computational design of maximum power point tracking for pho...
A cost effective computational design of maximum power point tracking for pho...A cost effective computational design of maximum power point tracking for pho...
A cost effective computational design of maximum power point tracking for pho...
IJECEIAES
 
Electricity Demand Forecasting Using Fuzzy-Neural Network
Electricity Demand Forecasting Using Fuzzy-Neural NetworkElectricity Demand Forecasting Using Fuzzy-Neural Network
Electricity Demand Forecasting Using Fuzzy-Neural NetworkNaren Chandra Kattla
 
Electricity Demand Forecasting Using ANN
Electricity Demand Forecasting Using ANNElectricity Demand Forecasting Using ANN
Electricity Demand Forecasting Using ANNNaren Chandra Kattla
 
Rotating blade faults classification of a rotor-disk-blade system using artif...
Rotating blade faults classification of a rotor-disk-blade system using artif...Rotating blade faults classification of a rotor-disk-blade system using artif...
Rotating blade faults classification of a rotor-disk-blade system using artif...
International Journal of Power Electronics and Drive Systems
 
Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...
elelijjournal
 
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
IJECEIAES
 
Integration of artificial neural networks for multi-source energy management ...
Integration of artificial neural networks for multi-source energy management ...Integration of artificial neural networks for multi-source energy management ...
Integration of artificial neural networks for multi-source energy management ...
International Journal of Power Electronics and Drive Systems
 
Artificial Neural Network Based Load Forecasting
Artificial Neural Network Based Load ForecastingArtificial Neural Network Based Load Forecasting
Artificial Neural Network Based Load Forecasting
IRJET Journal
 
Artificial Neural Network Applied to Estimate the Power Output of BIPV Systems
Artificial Neural Network Applied to Estimate the Power Output of BIPV SystemsArtificial Neural Network Applied to Estimate the Power Output of BIPV Systems
Artificial Neural Network Applied to Estimate the Power Output of BIPV Systems
IOSRjournaljce
 
Estimation of Weekly Reference Evapotranspiration using Linear Regression and...
Estimation of Weekly Reference Evapotranspiration using Linear Regression and...Estimation of Weekly Reference Evapotranspiration using Linear Regression and...
Estimation of Weekly Reference Evapotranspiration using Linear Regression and...
IDES Editor
 

What's hot (18)

Design of Dual Axis Solar Tracker System Based on Fuzzy Inference Systems
Design of Dual Axis Solar Tracker System Based on Fuzzy Inference Systems Design of Dual Axis Solar Tracker System Based on Fuzzy Inference Systems
Design of Dual Axis Solar Tracker System Based on Fuzzy Inference Systems
 
AI IEEE
AI IEEEAI IEEE
AI IEEE
 
Automated Solar Tracking System for Efficient Energy Utilization
Automated Solar Tracking System for Efficient Energy UtilizationAutomated Solar Tracking System for Efficient Energy Utilization
Automated Solar Tracking System for Efficient Energy Utilization
 
Road Network Extraction using Satellite Imagery.
Road Network Extraction using Satellite Imagery.Road Network Extraction using Satellite Imagery.
Road Network Extraction using Satellite Imagery.
 
Solar power forecasting report
Solar power forecasting reportSolar power forecasting report
Solar power forecasting report
 
IMPLEMENTATION OF UNSIGNED MULTIPLIER USING MODIFIED CSLA
IMPLEMENTATION OF UNSIGNED MULTIPLIER USING MODIFIED CSLAIMPLEMENTATION OF UNSIGNED MULTIPLIER USING MODIFIED CSLA
IMPLEMENTATION OF UNSIGNED MULTIPLIER USING MODIFIED CSLA
 
A0270107
A0270107A0270107
A0270107
 
Eeuc111
Eeuc111Eeuc111
Eeuc111
 
A cost effective computational design of maximum power point tracking for pho...
A cost effective computational design of maximum power point tracking for pho...A cost effective computational design of maximum power point tracking for pho...
A cost effective computational design of maximum power point tracking for pho...
 
Electricity Demand Forecasting Using Fuzzy-Neural Network
Electricity Demand Forecasting Using Fuzzy-Neural NetworkElectricity Demand Forecasting Using Fuzzy-Neural Network
Electricity Demand Forecasting Using Fuzzy-Neural Network
 
Electricity Demand Forecasting Using ANN
Electricity Demand Forecasting Using ANNElectricity Demand Forecasting Using ANN
Electricity Demand Forecasting Using ANN
 
Rotating blade faults classification of a rotor-disk-blade system using artif...
Rotating blade faults classification of a rotor-disk-blade system using artif...Rotating blade faults classification of a rotor-disk-blade system using artif...
Rotating blade faults classification of a rotor-disk-blade system using artif...
 
Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...Power system transient stability margin estimation using artificial neural ne...
Power system transient stability margin estimation using artificial neural ne...
 
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
Novel approach for hybrid MAC scheme for balanced energy and transmission in ...
 
Integration of artificial neural networks for multi-source energy management ...
Integration of artificial neural networks for multi-source energy management ...Integration of artificial neural networks for multi-source energy management ...
Integration of artificial neural networks for multi-source energy management ...
 
Artificial Neural Network Based Load Forecasting
Artificial Neural Network Based Load ForecastingArtificial Neural Network Based Load Forecasting
Artificial Neural Network Based Load Forecasting
 
Artificial Neural Network Applied to Estimate the Power Output of BIPV Systems
Artificial Neural Network Applied to Estimate the Power Output of BIPV SystemsArtificial Neural Network Applied to Estimate the Power Output of BIPV Systems
Artificial Neural Network Applied to Estimate the Power Output of BIPV Systems
 
Estimation of Weekly Reference Evapotranspiration using Linear Regression and...
Estimation of Weekly Reference Evapotranspiration using Linear Regression and...Estimation of Weekly Reference Evapotranspiration using Linear Regression and...
Estimation of Weekly Reference Evapotranspiration using Linear Regression and...
 

Viewers also liked

Cy31439446
Cy31439446Cy31439446
Cy31439446IJMER
 
Greedy – based Heuristic for OSC problems in Wireless Sensor Networks
Greedy – based Heuristic for OSC problems in Wireless Sensor NetworksGreedy – based Heuristic for OSC problems in Wireless Sensor Networks
Greedy – based Heuristic for OSC problems in Wireless Sensor Networks
IJMER
 
Aq31101108
Aq31101108Aq31101108
Aq31101108IJMER
 
Cu31420423
Cu31420423Cu31420423
Cu31420423IJMER
 
Ab32611617
Ab32611617Ab32611617
Ab32611617IJMER
 
Performance Analysis of Trust-Aware Routing Framework for Wireless Mesh Networks
Performance Analysis of Trust-Aware Routing Framework for Wireless Mesh NetworksPerformance Analysis of Trust-Aware Routing Framework for Wireless Mesh Networks
Performance Analysis of Trust-Aware Routing Framework for Wireless Mesh Networks
IJMER
 
Как сделать документы красивыми
Как сделать документы красивымиКак сделать документы красивыми
Как сделать документы красивыми
Yury Kniazhevich
 
Solar-Thermoelectric Hybrid Powergenerator
Solar-Thermoelectric Hybrid PowergeneratorSolar-Thermoelectric Hybrid Powergenerator
Solar-Thermoelectric Hybrid Powergenerator
IJMER
 
Damping Of Composite Material Structures with Riveted Joints
Damping Of Composite Material Structures with Riveted JointsDamping Of Composite Material Structures with Riveted Joints
Damping Of Composite Material Structures with Riveted Joints
IJMER
 
An Experimental Investigation of Capacity Utilization in Manufacturing Indus...
An Experimental Investigation of Capacity Utilization in  Manufacturing Indus...An Experimental Investigation of Capacity Utilization in  Manufacturing Indus...
An Experimental Investigation of Capacity Utilization in Manufacturing Indus...
IJMER
 
Aj32652658
Aj32652658Aj32652658
Aj32652658IJMER
 
Do31541546
Do31541546Do31541546
Do31541546IJMER
 
C04010 02 1519
C04010 02 1519C04010 02 1519
C04010 02 1519IJMER
 
Design of Coaxial Rotor Micro Air Vehicle
Design of Coaxial Rotor Micro Air Vehicle Design of Coaxial Rotor Micro Air Vehicle
Design of Coaxial Rotor Micro Air Vehicle
IJMER
 
As2419201922
As2419201922As2419201922
As2419201922IJMER
 
D04011824
D04011824D04011824
D04011824IJMER
 
Parametric Analysis and Optimization of Turning Operation by Using Taguchi Ap...
Parametric Analysis and Optimization of Turning Operation by Using Taguchi Ap...Parametric Analysis and Optimization of Turning Operation by Using Taguchi Ap...
Parametric Analysis and Optimization of Turning Operation by Using Taguchi Ap...
IJMER
 
The Minimum Cost Forwarding Using MAC Protocol for Wireless Sensor Networks
The Minimum Cost Forwarding Using MAC Protocol for Wireless Sensor NetworksThe Minimum Cost Forwarding Using MAC Protocol for Wireless Sensor Networks
The Minimum Cost Forwarding Using MAC Protocol for Wireless Sensor Networks
IJMER
 
A Threshold fuzzy entropy based feature selection method applied in various b...
A Threshold fuzzy entropy based feature selection method applied in various b...A Threshold fuzzy entropy based feature selection method applied in various b...
A Threshold fuzzy entropy based feature selection method applied in various b...
IJMER
 
The Impact of HIV/AIDS on Rural Household Welfare in Rukungiri District-Uganda
The Impact of HIV/AIDS on Rural Household Welfare in Rukungiri District-UgandaThe Impact of HIV/AIDS on Rural Household Welfare in Rukungiri District-Uganda
The Impact of HIV/AIDS on Rural Household Welfare in Rukungiri District-Uganda
IJMER
 

Viewers also liked (20)

Cy31439446
Cy31439446Cy31439446
Cy31439446
 
Greedy – based Heuristic for OSC problems in Wireless Sensor Networks
Greedy – based Heuristic for OSC problems in Wireless Sensor NetworksGreedy – based Heuristic for OSC problems in Wireless Sensor Networks
Greedy – based Heuristic for OSC problems in Wireless Sensor Networks
 
Aq31101108
Aq31101108Aq31101108
Aq31101108
 
Cu31420423
Cu31420423Cu31420423
Cu31420423
 
Ab32611617
Ab32611617Ab32611617
Ab32611617
 
Performance Analysis of Trust-Aware Routing Framework for Wireless Mesh Networks
Performance Analysis of Trust-Aware Routing Framework for Wireless Mesh NetworksPerformance Analysis of Trust-Aware Routing Framework for Wireless Mesh Networks
Performance Analysis of Trust-Aware Routing Framework for Wireless Mesh Networks
 
Как сделать документы красивыми
Как сделать документы красивымиКак сделать документы красивыми
Как сделать документы красивыми
 
Solar-Thermoelectric Hybrid Powergenerator
Solar-Thermoelectric Hybrid PowergeneratorSolar-Thermoelectric Hybrid Powergenerator
Solar-Thermoelectric Hybrid Powergenerator
 
Damping Of Composite Material Structures with Riveted Joints
Damping Of Composite Material Structures with Riveted JointsDamping Of Composite Material Structures with Riveted Joints
Damping Of Composite Material Structures with Riveted Joints
 
An Experimental Investigation of Capacity Utilization in Manufacturing Indus...
An Experimental Investigation of Capacity Utilization in  Manufacturing Indus...An Experimental Investigation of Capacity Utilization in  Manufacturing Indus...
An Experimental Investigation of Capacity Utilization in Manufacturing Indus...
 
Aj32652658
Aj32652658Aj32652658
Aj32652658
 
Do31541546
Do31541546Do31541546
Do31541546
 
C04010 02 1519
C04010 02 1519C04010 02 1519
C04010 02 1519
 
Design of Coaxial Rotor Micro Air Vehicle
Design of Coaxial Rotor Micro Air Vehicle Design of Coaxial Rotor Micro Air Vehicle
Design of Coaxial Rotor Micro Air Vehicle
 
As2419201922
As2419201922As2419201922
As2419201922
 
D04011824
D04011824D04011824
D04011824
 
Parametric Analysis and Optimization of Turning Operation by Using Taguchi Ap...
Parametric Analysis and Optimization of Turning Operation by Using Taguchi Ap...Parametric Analysis and Optimization of Turning Operation by Using Taguchi Ap...
Parametric Analysis and Optimization of Turning Operation by Using Taguchi Ap...
 
The Minimum Cost Forwarding Using MAC Protocol for Wireless Sensor Networks
The Minimum Cost Forwarding Using MAC Protocol for Wireless Sensor NetworksThe Minimum Cost Forwarding Using MAC Protocol for Wireless Sensor Networks
The Minimum Cost Forwarding Using MAC Protocol for Wireless Sensor Networks
 
A Threshold fuzzy entropy based feature selection method applied in various b...
A Threshold fuzzy entropy based feature selection method applied in various b...A Threshold fuzzy entropy based feature selection method applied in various b...
A Threshold fuzzy entropy based feature selection method applied in various b...
 
The Impact of HIV/AIDS on Rural Household Welfare in Rukungiri District-Uganda
The Impact of HIV/AIDS on Rural Household Welfare in Rukungiri District-UgandaThe Impact of HIV/AIDS on Rural Household Welfare in Rukungiri District-Uganda
The Impact of HIV/AIDS on Rural Household Welfare in Rukungiri District-Uganda
 

Similar to Measurement Of Rn222 Concentrations In The Air Of Peshraw & Darbandikhan Tunnels Located In Sulaimani Governorate Of Kurdistan Region-Iraq.

Implementing Neural Networks Using VLSI for Image Processing (compression)
Implementing Neural Networks Using VLSI for Image Processing (compression)Implementing Neural Networks Using VLSI for Image Processing (compression)
Implementing Neural Networks Using VLSI for Image Processing (compression)
IJERA Editor
 
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
ijcsit
 
ANFIS Control of Energy Control Center for Distributed Wind and Solar Generat...
ANFIS Control of Energy Control Center for Distributed Wind and Solar Generat...ANFIS Control of Energy Control Center for Distributed Wind and Solar Generat...
ANFIS Control of Energy Control Center for Distributed Wind and Solar Generat...
IRJET Journal
 
Application of CI in Motor Modeling
Application of CI in Motor ModelingApplication of CI in Motor Modeling
Application of CI in Motor Modeling
Yousuf Khan
 
IRJET- Three Phase Line Fault Detection using Artificial Neural Network
IRJET- Three Phase Line Fault Detection using Artificial Neural NetworkIRJET- Three Phase Line Fault Detection using Artificial Neural Network
IRJET- Three Phase Line Fault Detection using Artificial Neural Network
IRJET Journal
 
International Journal of Computational Engineering Research(IJCER)
 International Journal of Computational Engineering Research(IJCER)  International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
ijceronline
 
Improving efficiency of Photovoltaic System with Neural Network Based MPPT Co...
Improving efficiency of Photovoltaic System with Neural Network Based MPPT Co...Improving efficiency of Photovoltaic System with Neural Network Based MPPT Co...
Improving efficiency of Photovoltaic System with Neural Network Based MPPT Co...
IJMER
 
ARTIFICIAL NEURAL NETWORK BASED POWER SYSTEM STABILIZER ON A SINGLE MACHINE ...
ARTIFICIAL NEURAL NETWORK BASED POWER  SYSTEM STABILIZER ON A SINGLE MACHINE ...ARTIFICIAL NEURAL NETWORK BASED POWER  SYSTEM STABILIZER ON A SINGLE MACHINE ...
ARTIFICIAL NEURAL NETWORK BASED POWER SYSTEM STABILIZER ON A SINGLE MACHINE ...
EEIJ journal
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
ijceronline
 
D04011824
D04011824D04011824
Energy Framework Enhancements in the WSN Simulator OMNETPP
Energy Framework Enhancements in the WSN Simulator OMNETPPEnergy Framework Enhancements in the WSN Simulator OMNETPP
Energy Framework Enhancements in the WSN Simulator OMNETPP
International Journal of Engineering Inventions www.ijeijournal.com
 
Modeling of Micro-Hydro Power Plant and its Direct Based on Neural system
Modeling of Micro-Hydro Power Plant and its Direct Based on Neural systemModeling of Micro-Hydro Power Plant and its Direct Based on Neural system
Modeling of Micro-Hydro Power Plant and its Direct Based on Neural system
IRJET Journal
 
Speed Control of Three Phase Induction Motor Using Neural Network
Speed Control of Three Phase Induction Motor Using Neural NetworkSpeed Control of Three Phase Induction Motor Using Neural Network
Speed Control of Three Phase Induction Motor Using Neural Network
IJCSIS Research Publications
 
Self_evolving_neural_network_based_algor.pdf
Self_evolving_neural_network_based_algor.pdfSelf_evolving_neural_network_based_algor.pdf
Self_evolving_neural_network_based_algor.pdf
Jose SanLeandro
 
Design of c slotted microstrip antenna using
Design of c slotted microstrip antenna usingDesign of c slotted microstrip antenna using
Design of c slotted microstrip antenna using
eSAT Publishing House
 
Design of c slotted microstrip antenna using artificial neural network model
Design of c slotted microstrip antenna using artificial neural network modelDesign of c slotted microstrip antenna using artificial neural network model
Design of c slotted microstrip antenna using artificial neural network model
eSAT Journals
 
CONTROL OF A HEAT EXCHANGER USING NEURAL NETWORK PREDICTIVE CONTROLLER COMBIN...
CONTROL OF A HEAT EXCHANGER USING NEURAL NETWORK PREDICTIVE CONTROLLER COMBIN...CONTROL OF A HEAT EXCHANGER USING NEURAL NETWORK PREDICTIVE CONTROLLER COMBIN...
CONTROL OF A HEAT EXCHANGER USING NEURAL NETWORK PREDICTIVE CONTROLLER COMBIN...
ijics
 
M phil-computer-science-artifical-neural-networks-projects
M phil-computer-science-artifical-neural-networks-projectsM phil-computer-science-artifical-neural-networks-projects
M phil-computer-science-artifical-neural-networks-projects
Vijay Karan
 
Implementation of Energy Management System to PV-Diesel Hybrid Power Generati...
Implementation of Energy Management System to PV-Diesel Hybrid Power Generati...Implementation of Energy Management System to PV-Diesel Hybrid Power Generati...
Implementation of Energy Management System to PV-Diesel Hybrid Power Generati...
paperpublications3
 
Optimal neural network models for wind speed prediction
Optimal neural network models for wind speed predictionOptimal neural network models for wind speed prediction
Optimal neural network models for wind speed prediction
IAEME Publication
 

Similar to Measurement Of Rn222 Concentrations In The Air Of Peshraw & Darbandikhan Tunnels Located In Sulaimani Governorate Of Kurdistan Region-Iraq. (20)

Implementing Neural Networks Using VLSI for Image Processing (compression)
Implementing Neural Networks Using VLSI for Image Processing (compression)Implementing Neural Networks Using VLSI for Image Processing (compression)
Implementing Neural Networks Using VLSI for Image Processing (compression)
 
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
COMPARATIVE STUDY OF BACKPROPAGATION ALGORITHMS IN NEURAL NETWORK BASED IDENT...
 
ANFIS Control of Energy Control Center for Distributed Wind and Solar Generat...
ANFIS Control of Energy Control Center for Distributed Wind and Solar Generat...ANFIS Control of Energy Control Center for Distributed Wind and Solar Generat...
ANFIS Control of Energy Control Center for Distributed Wind and Solar Generat...
 
Application of CI in Motor Modeling
Application of CI in Motor ModelingApplication of CI in Motor Modeling
Application of CI in Motor Modeling
 
IRJET- Three Phase Line Fault Detection using Artificial Neural Network
IRJET- Three Phase Line Fault Detection using Artificial Neural NetworkIRJET- Three Phase Line Fault Detection using Artificial Neural Network
IRJET- Three Phase Line Fault Detection using Artificial Neural Network
 
International Journal of Computational Engineering Research(IJCER)
 International Journal of Computational Engineering Research(IJCER)  International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Improving efficiency of Photovoltaic System with Neural Network Based MPPT Co...
Improving efficiency of Photovoltaic System with Neural Network Based MPPT Co...Improving efficiency of Photovoltaic System with Neural Network Based MPPT Co...
Improving efficiency of Photovoltaic System with Neural Network Based MPPT Co...
 
ARTIFICIAL NEURAL NETWORK BASED POWER SYSTEM STABILIZER ON A SINGLE MACHINE ...
ARTIFICIAL NEURAL NETWORK BASED POWER  SYSTEM STABILIZER ON A SINGLE MACHINE ...ARTIFICIAL NEURAL NETWORK BASED POWER  SYSTEM STABILIZER ON A SINGLE MACHINE ...
ARTIFICIAL NEURAL NETWORK BASED POWER SYSTEM STABILIZER ON A SINGLE MACHINE ...
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
D04011824
D04011824D04011824
D04011824
 
Energy Framework Enhancements in the WSN Simulator OMNETPP
Energy Framework Enhancements in the WSN Simulator OMNETPPEnergy Framework Enhancements in the WSN Simulator OMNETPP
Energy Framework Enhancements in the WSN Simulator OMNETPP
 
Modeling of Micro-Hydro Power Plant and its Direct Based on Neural system
Modeling of Micro-Hydro Power Plant and its Direct Based on Neural systemModeling of Micro-Hydro Power Plant and its Direct Based on Neural system
Modeling of Micro-Hydro Power Plant and its Direct Based on Neural system
 
Speed Control of Three Phase Induction Motor Using Neural Network
Speed Control of Three Phase Induction Motor Using Neural NetworkSpeed Control of Three Phase Induction Motor Using Neural Network
Speed Control of Three Phase Induction Motor Using Neural Network
 
Self_evolving_neural_network_based_algor.pdf
Self_evolving_neural_network_based_algor.pdfSelf_evolving_neural_network_based_algor.pdf
Self_evolving_neural_network_based_algor.pdf
 
Design of c slotted microstrip antenna using
Design of c slotted microstrip antenna usingDesign of c slotted microstrip antenna using
Design of c slotted microstrip antenna using
 
Design of c slotted microstrip antenna using artificial neural network model
Design of c slotted microstrip antenna using artificial neural network modelDesign of c slotted microstrip antenna using artificial neural network model
Design of c slotted microstrip antenna using artificial neural network model
 
CONTROL OF A HEAT EXCHANGER USING NEURAL NETWORK PREDICTIVE CONTROLLER COMBIN...
CONTROL OF A HEAT EXCHANGER USING NEURAL NETWORK PREDICTIVE CONTROLLER COMBIN...CONTROL OF A HEAT EXCHANGER USING NEURAL NETWORK PREDICTIVE CONTROLLER COMBIN...
CONTROL OF A HEAT EXCHANGER USING NEURAL NETWORK PREDICTIVE CONTROLLER COMBIN...
 
M phil-computer-science-artifical-neural-networks-projects
M phil-computer-science-artifical-neural-networks-projectsM phil-computer-science-artifical-neural-networks-projects
M phil-computer-science-artifical-neural-networks-projects
 
Implementation of Energy Management System to PV-Diesel Hybrid Power Generati...
Implementation of Energy Management System to PV-Diesel Hybrid Power Generati...Implementation of Energy Management System to PV-Diesel Hybrid Power Generati...
Implementation of Energy Management System to PV-Diesel Hybrid Power Generati...
 
Optimal neural network models for wind speed prediction
Optimal neural network models for wind speed predictionOptimal neural network models for wind speed prediction
Optimal neural network models for wind speed prediction
 

More from IJMER

A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...
IJMER
 
Developing Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingDeveloping Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed Delinting
IJMER
 
Study & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreStudy & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja Fibre
IJMER
 
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
IJMER
 
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
IJMER
 
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
IJMER
 
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
IJMER
 
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
IJMER
 
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationStatic Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
IJMER
 
High Speed Effortless Bicycle
High Speed Effortless BicycleHigh Speed Effortless Bicycle
High Speed Effortless Bicycle
IJMER
 
Integration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise ApplicationsIntegration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise Applications
IJMER
 
Microcontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemMicrocontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation System
IJMER
 
On some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesOn some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological Spaces
IJMER
 
Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...
IJMER
 
Natural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningNatural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine Learning
IJMER
 
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessEvolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
IJMER
 
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersMaterial Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
IJMER
 
Studies On Energy Conservation And Audit
Studies On Energy Conservation And AuditStudies On Energy Conservation And Audit
Studies On Energy Conservation And Audit
IJMER
 
An Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLAn Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDL
IJMER
 
Discrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyDiscrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One Prey
IJMER
 

More from IJMER (20)

A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...
 
Developing Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingDeveloping Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed Delinting
 
Study & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreStudy & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja Fibre
 
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
 
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
 
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
 
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
 
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
 
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationStatic Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
 
High Speed Effortless Bicycle
High Speed Effortless BicycleHigh Speed Effortless Bicycle
High Speed Effortless Bicycle
 
Integration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise ApplicationsIntegration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise Applications
 
Microcontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemMicrocontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation System
 
On some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesOn some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological Spaces
 
Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...
 
Natural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningNatural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine Learning
 
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessEvolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
 
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersMaterial Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
 
Studies On Energy Conservation And Audit
Studies On Energy Conservation And AuditStudies On Energy Conservation And Audit
Studies On Energy Conservation And Audit
 
An Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLAn Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDL
 
Discrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyDiscrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One Prey
 

Measurement Of Rn222 Concentrations In The Air Of Peshraw & Darbandikhan Tunnels Located In Sulaimani Governorate Of Kurdistan Region-Iraq.

  • 1. International OPEN Journal ACCESS Of Modern Engineering Research (IJMER) Space Craft Power System Implementation using Neural Network Savithra B.1, Ajay M. P.2 1 (Masters in VLSI Design, Sri Shakthi Institute of Engineering and Technology, India) (Department of Electronics and Communication Engineering, Sri Shakthi Institute of Engineering and Technology, India) 2 ABSTRACT: The usage of renewable source of energy is increasing in recent days. This is widely used in the spacecrafts for the power system built there. The power system of a spacecraft can be simulated using artificial intelligence. Designing and implementing intelligent systems has become a crucial factor for the innovation and development of better products of space technologies. The artificial neural network is used in implementing non-linear problems. The weights for the neural networks are calculated using MATLAB-SIMULINK and the architecture of the design can be programmed in VHDL. The multilayer perceptron model is used for implementing the generator, controller and the battery. Back propagation algorithm is used in modeling this network since the error can be reduced significantly. Keywords: Spacecraft, Artificial Neural Network, VHDL. I. Introduction A spacecraft is a vehicle, vessel or machine which is designed to fly in outer space. Spacecraft are used for a variety of purposes. Some applications in which spacecraft are used are communications, earth observation, meteorology, navigation, planetary exploration and transportation of humans and cargo. Spacecraft need an electrical power generation and distribution subsystem for powering the various spacecraft subsystems. The source for power available in the world nowadays are becoming very less. There are different technologies employed in power production. Photovoltaic are best known as a method for generating electric power by using solar cells to convert energy from the sun into a flow of electrons. The Number of electronic applications using artificial neural network based solutions has increased considerably in the last few years. The main advantages of using ANN algorithms are simplifying the complicated algorithms, reducing heavy computation demands and improving fault tolerance. The main objective is developing the photovoltaic simulator for the generating the power in the spacecraft. Several components are used in this simulation. An MLP(Multi-Layer Perceptron) is modeled for simulating each component of the system. After modeling an MLP the architecture of each component can be programmed using VHDL. The modeling of the MLP can be done with MATLAB-SIMULINK. The algorithm used in this modeling back-propagation which reduces the error significantly. The paper is organized as follows: Section two gives the clear architecture of the system. Artificial Neural Network structure and the model is described briefly. Section four shows the implementation of the system. And section five gives the simulation results. II. Architecture of the Power System The block given in fig. 1 shows the complete architecture of the system. The components used in modeling this system are PV generator, Controller and a Battery. The PV generator is used to generate the current from the solar panel. This can be modeled with neural networks and the architecture of this generator can be programmed in VHDL. The battery is also modeled using MLP. The battery consists of accumulators. Each accumulator can deliver 2V. Solar panel Generator Load Controller Battery Figure 1 Block diagram of the power system | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 1 | Jan. 2014 |92|
  • 2. Space Craft Power System Implementation using Neural Network The controller modeling is also done with MLP. The controller is used to monitor the current generated by the generator module. The design of the controller[2] is shown in the fig. 2. Ipv + E IL Battery System NN Controller + IB IL Figure 2 Block Diagram of the Controller This controller is used in the power system of [1] instead of a regulator. Since the number of hidden layers and neurons in the controller is minimum the number of calculations can be reduced and the speed of the system will be improved. III. Artificial Neural Networks Artificial neural networks are information-processing systems that have the performance characteristics common to biological neurons. The neural network represents a network with a finite number of layers consisting of solitary elements that are similar to neurons with different types of connections between layers. The number of neurons in the layers is selected to be sufficient for the provision of the required problem solving quality. The number of layers is desired to be minimal in order to decrease the problem solving time. The structure of the neural network is shown in the fig. 3. The weight updating is the major calculation in the neural networks. The neural network can be mathematically represented as given in the equation below. 𝑦 = 𝑓 𝑦𝑗 (1) 𝑦𝑗 = 𝑛 𝑖=1 𝑥𝑖 𝑤𝑖 + 𝑏 (2) Xi is the input of the network. Wi is the weight co-efficient. B is the bias. y is the output of the neuron which is given by the f(x). f(x) is called the activation function. This activation function is a non-linear function that is widely used in feed-forward calculations of the algorithm. 𝑓 𝑦𝑗 = 2 (3) −2𝑦 𝑗 (1+𝑒 )−1 Figure 3 Neural Network Model The main use of this neural network in the electronic applications is to reduce the error of the system. There are many algorithms designed for the implementation of the neural networks. The main algorithm that is widely used is the back-propagation algorithm which reduces the error significantly. IV. Implementing the System Generator: The PV generator can be designed with the artificial neural networks. The photovoltaic source from the solar panel is given to the generator. The input to the generator is solar radiation(H) and ambient temperature(Ta). The output of this will be voltage (Vpv) and current(Ipv). Voltage and the current is the function of Temperature and radiation. It can be given by 𝑉𝑝 𝑣 , 𝐼 𝑝𝑣 = 𝑓(𝑇 𝑎 , 𝐻) (4) | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 1 | Jan. 2014 |93|
  • 3. Space Craft Power System Implementation using Neural Network The neural network model for this contains an input layer, an output layer and two hidden layers. First hidden layer has seven neurons and second has nine neurons. The neural network model of the generator is given below with the inputs and outputs. Figure 4 MLP Generator Model Controller: the controller (Fig. 5 designing is the major part in the power system. Because it decides how the current generated from the solar panel should be utilized. The working of the controller will be disused briefly, before that the inputs for the controller is the error (E) and the load current (IL). The load current is the current value that is required by the system usage. That can be fixed manually. The neural network model of controller is given below. This has a input layer, a output layer and a hidden layer with three neurons. Figure 5 MLP Controller Model The working of the controller is given in the fig. 6 as a flow chart. Figure 6 Flow chart of the working of controller | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 1 | Jan. 2014 |94|
  • 4. Space Craft Power System Implementation using Neural Network Battery: The battery is also designed with a multilayer neural network. The battery is used to store the excess current from the generator. The stored current can be further used in the eclipse time. The input data for the battery sub-system are the ambient temperature (Ta) the current coming from the regulator to battery(Ir). The output data is the battery voltage (Vb). The architecture of the battery consists of series of accumulators that can deliver 2V current. The neural network design of the battery is given below in fig. 7. Fig. 7 MLP model of Battery The design consists of an input layer, an output layer and three hidden layers. There are fourteen neurons in the first hidden layer, sixteen neurons in second hidden layer and ten neurons in second hidden layer. I. RESULT The ANN of each component is first modeled in the MATLAB-SIMULINK and the error of is calculated. The calculation of error is shown in the figure given below. This is the MATLAB command window with the calculations of error. Figure 8 Error and the weights calculated in MATLAB for ANN So finally the weight matrix and the error can be calculated. Instead of calculating this each time the results can be saved in the .mat file which is the matrix file. That can be used further while programming the architecture of each component. The architecture of each component is developed in MODELSIM. The simulation results are given below. | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 1 | Jan. 2014 |95|
  • 5. Space Craft Power System Implementation using Neural Network Figure 9 Simularion of MLP PV Generator in MODELSIM Fig. 10 Simulation of MLP Controller Fig. 11 Simulation of MLP PV Battery in MODELSIM V. Conclusion The simulation for a power system in spacecraft using neural networks is done. The advantage of using neural networks for this implementation is to improve the speed of the process and to solve the non-linear problems. A controller is first designed which decides how to utilize the current from the solar panel. The simulation of this architecture is done using ModelSim. The ANN’s are simulated in MATLAB. The algorithm used for modeling the ANN is back propagation so the error can be minimum. The MATLAB is used for mathematical calculations and ModelSim for architecture development. The performance of this process can be | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 1 | Jan. 2014 |96|
  • 6. Space Craft Power System Implementation using Neural Network improved by reducing the number of hidden layers. Since the number of hidden layers increases the calculation increases which consumes more time. The utilization of solar power efficiently is the major part in this design. When the calculation speed increases the process of obtaining the current can also be improved. The suns movement varies in space often, so the power system speed must be improved. References [1] [2] [3] [4] [5] [6] [7] Mellit, H. Mekki, A. Messai, H. Salhi, FPGA-based implementation of an intelligent simulator for stand-alone photovoltaic system, Expert Systems with Applications 37,2010 Hanaa T. El-Madany, Faten H. Fahmy, Ninet M. A. El-Rahman, and Hassen T. Dorrah., “Spacecraft Neural Network Control System Design using FPGA”, World Academy of Science, Engineering and Technology, 2011. Amos R. Omondi, and Jagath C. Rajapakse, "Power System Implementations of Neural Networks", Springer publisher, 2006. H. Mekki, A. Mellit, H.Salhi, and B. Khaled, “Modeling and simulation of photovoltaic panel based on artificial neural networks and VHDL language”, IEEE 2007. Moufdi Hadjab, Smail Berrah and Hamza Abid, Neural network for modeling solar panel, International Journal of Energy, Issue 1, Vol. 6, 2012. Hanaa T. El-Madany, Faten H. Fahmy, Ninet M. A. El-Rahman, and Hassen T. Dorrah., “Spacecraft Neural Network Control System Design using FPGA”, World Academy of Science, Engineering and Technology, 2011. Mehmet Tukel And Mustak Erhan Yalcin, "A New Architecture for Cellular Neural Network on Reconfigurable Hardware with an Advance Memory Allocation Method, in proc. of IEEE 2010 12th International Workshop on Cellular Nanoscale Networks and their Applications. | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 1 | Jan. 2014 |97|