Overview and Development:
Particle Swarm Optimization is one of the most important algorithms used in modern data analysis and mathematical programming. This algorithm aims to find the best solution or feasible solution for a given optimization problems. The basic idea is that you keep a set of similar differentiable functions placed in a cluster, and then you try to optimize the objective function until it converges to a solution.
It has a very limited hyperparameter:
1. Procedure has many representatives that comprise a swarm roaming in the search section, finding the finest result.
2. Here algorithms work to solve a problem, the social interaction concept is used.
3. Global best that is known as Gbest offers the best value which is tracked by PSO.
4. In the solution space, each particle finds its positional coordinates in relation to the optimal
What is a particle swarm?
Particle Swarm Optimization is a method used to search for important specifications for a new machine to be built. It is based on the observation that immobility in a fluid is a property shared by many objects of similar structure, and that immobility of a part or part of a system is a property of the whole.
Particle swarm optimization problem seeks to find the most efficient way to screen through scenarios that occur in the real world, to quickly find the most efficient path for a specific set of business challenges. Optimization algorithms are used for industrial applications in the field of AI.
The behavior of Optimization problem & Optimal solution
Different algorithms have been introduced at different times and many of them were dissipated but PSO is still in the attention of many researchers. PSO was developed by Eberhart and Kennedy in the year 1995.
Particle swarm optimization simulation is a mathematical program that involves organized groups of particles, or particles that are not in an isolated state, as well as how to organize them in a way that minimizes the search space and provides optimum output through a fixed number of iterations.
There are a variety of different aspects to PSO and most of them are related to how the group members’ behavior is reflected in the search space. The main goal of PSO is to create smaller and closer-together groups that minimize the search space. It is one of the most important algorithms in the field of computer science.
As the flock bird’s movement can be simulated, here each is capable to find the best feasible solutions in the solution space of high dimension, and hence the greatest solution is found by the flock. This is called a heuristic solution. As the real global optimal solution cannot be approved.
Determine the developed model of Optimization Problems:
To design the system with the optimal values of the lowest cost with the modern scientific parameter is known as Optimization. If you want to find the greatest solution to any problem, so optimization provides it.
If a CEO needs to take different types of plans at different periods of time. That person with try to minimize the hard work he is doing through different steps to maximize the profit for him.
For maximizing and minimizing tasks Optimization is highly referred to. Now the problems in optimization can be linear or nonlinear functions. The Non-Liner problems are more difficult to solve.
There are different types of Optimizations, constraints, dynamic, local, and global.
PSO Algorithm Parameters to solve an objective function
For different optimization problems, there are different parameters
1. Swarm size
2. Iteration number
3. Velocity components
4. Acceleration Coefficients
Building the PSO Algorithm
The Particle swarm is majorly based on the algorithms. It is the most natural algorithm. A class of independents known as debris move in specific steps in a complete area. Evaluation is done at every position which in terms decides and lots a completely new pace to each of the elements.
The Particle Swarm Algorithm’s major steps are Initialization, objective function evaluation, Iteration, and stopping. The complete process is as:
1. Making the Initial particles
2. Particles should be assigned with initial velocities
3. At every particle location, the objective function needs to be evaluated, referred to as the personal best pBest
4. It will find the best shortest value and location
5. The updated new velocities will be selected by the simulation, which is based on current velocities and the best positions of particles and their nearest particles
6. Then repetitively modernize the location of the particles
7. This repetition will continue until the stopping criteria are reached by the algorithm
Particle swarm optimization algorithm Matlab code Explanation
In this example, the requirement is to find the global minimum, in order to implement PSO Matlab code to an objective function.
The optimized method is affected by a variety of control parameters, including the dimension of the problem, the number of swarms, inertia weight, acceleration coefficients, number of iterations, and the random value that influence social and cognitive components.
PSO Matlab Initialization
The inertial weight greatly impacts the PSO algorithm code in the convergence of optimization. This factor maintains the particle/swarms inertial motion and redirects the change of particle velocity. PSO code correction factor is a suitable approach to ensure convergence of the Matlab particle swarm optimization. Let’s demonstrate the PSO code in Matlab
clear
clc
iterations = 1000;
inertia = 1.0;
correction_factor = 2.0;
swarms = 5000;
I will attach the download link for particle swarm optimization Matlab code at the end of this post, so keep the focus on the understanding.
Here in the below, 50 rows are created, in the case of 5000 particles, there will be 5000 rows as well. Considered columns are 7 as 1, 2 represent particle position, and 3, 4 represent the particle velocity. PSO algorithm Matlab code updates the position, and velocity on each iteration.
% ---- initial swarm position -----
swarm=zeros(5000,7);
step = 1;
for i = 1 : 5000
swarm(step, 1:7) = i;
step = step + 1;
end
swarm(:, 7) = 1000; % Greater than maximum possible value
swarm(:, 5) = 0; % initial velocity
swarm(:, 6) = 0; % initial velocity
In 5, 6 column velocity vector consideration based on inertia and correction factor is done and then it will be updated on 3, 4 columns.
Interested to implement different objective functions then you have to adjust the PSO Optimization Matlab program a bit.
%-- position of Swarms ---
for i = 1 : swarms
swarm(i, 1) = swarm(i, 1) + swarm(i, 5)/1.2 ; %update u position
swarm(i, 2) = swarm(i, 2) + swarm(i, 6)/1.2 ; %update v position
u = swarm(i, 1);
v = swarm(i, 2);
value = (u - 20)^2 + (v - 10)^2; %Objective function
if value < swarm(i, 7) % Always True
swarm(i, 3) = swarm(i, 1); % update best position of u,
swarm(i, 4) = swarm(i, 2); % update best postions of v,
swarm(i, 7) = value; % best updated minimum value
end
end
In the case of 5000 swarms, the cluster looks like this, which have to finally converge at a point closer to each other.
Differences between PSO and Genetic Algorithm (GA):
Optimization techniques like Particle swarm optimization and Genetic Algorithm (GA) both have many features that are similar as mostly both are used in a similar type of problem programs, but there are some differences too.
To reach a faster convergence PSO needs to normalize the Input parameters, whereas the genetic algorithm uses discrete as well as continuous.
Swam optimization requires no evolution operators, whereas GA has crossover etc.
PSO provides both local searchers and global searchers, whereas GA provides only local searchers.
In PSO the independent individual is neither created nor deleted.
From research, the performance of PSO is found to be much better than GA, as it provides both global and local searches.
Advantages and Disadvantages of Particle Swarm Optimization
Advantages:
1. The whole concept is quite simple
2. Implementation is not very complex
3. Without difficulty parallelized for concurrent processing
4. A completely green international seek set of rules
5. It has very few amounts of algorithm parameters
6. Provides both global and local searches
Disadvantages:
There are very few disadvantages as well
1. Its convergence rate is low
2. It is weak in the local search
Conclusion:
In the field of Artificial Intelligence PSO plays an important role. It has many new advanced features. It is an optimization algorithm that is global and local and has many different unique strategies. It helps a lot in improving the solution of problems.
You should read this article with a positive attitude, interest, and hopefully, find out really helpful what we have done and how you can implement yours.
If you are interested to get the code, click the below link
PSO algorithm Matlab code free download
Interested to learn more take a look at recent popular content
Load Flow Analysis Matlab Code
Optimal Location and Sizing of Distributed Generation
References
[1] Kennedy, J., and R. Eberhart. “Particle Swarm Optimization.” Proceedings of the IEEE International Conference on Neural Networks. Perth, Australia, 1995, pp. 1942–1945.
[2] Mezura-Montes, E., and C. A. Coello Coello. “Constraint-handling in nature-inspired numerical optimization: Past, present and future.” Swarm and Evolutionary Computation. 2011, pp. 173–194.
[3] Pedersen, M. E. “Good Parameters for Particle Swarm Optimization.” Luxembourg: Hvass Laboratories, 2010.
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding? rexlhyong@gmail.com
ardiano435@gmail.com
check your email please.
Hi, can I also please get the code for optimization of size and placement of distributed generation in a IEEE 33 Bus and IEEE 69 using PSO? Here is my email: jennysorbet@gmail.com
Thank you very much!
Hi Sir! Can you send me the code of following.
Create network with number of users (2 users).
Each 2 users assumed to share same sub-channel, so Number of sub-channels will be double the number of users (4Sub-Channels).
We share the 2 users on same sub-channel randomly.
Users /Channel Ch 1 Ch 2 Ch 3 Ch 4 U 1 U 2
Now we need to do power Allocation using Particle Swarm Optimization to get the optimal solution for power allocation problem.
Power Allocated to user 1 and user 2 in order to get the highest throughput for both users.
Throughput equation of the 2 Users :
R (1,z) = BW_sc * ( log2 (1+ PW (1,z) * (gain (1,z))^2 )/ ( PW(2, z)*(gain(1,z))^2 + Nb_subchannels*N0) ) ; %%%%%%%% Throughput for user 1 %%%%%%%
R (2,z) = BW_sc * ( log2 (1+ PW (2,z) * (gain (1,z))^2 )/ ( Nb_subchannels*N0) ) ; %%%%%%%% Throughput for user 2 %%%%%%%
Then we calculate the Throughput after we get the optimal solution of the PSO for Power allocation.
My email is uzamamanzoor1271996@gmail.com
Check your email.
Would you mind sending me the matlab code about ( optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO?
m.hashem_2020@yahoo.com
sohagliuww@gmail.com
Check your email.
Hello sir I want to minimise cos5x1+cos5x2+cos5x3+cos5x4=0
cos7x1+cos7x2+cos7x3+cos7x4=0
cos11x1+cos11x2+cos11x3+cos11x4=0
Where i have 4 unknown variables x1, x2, x3, x4.
Condition is
0 < x1 < x2 < x3 < x4 < pi/2.
Can you please help about the code.
Hello sir I want to minimise cos5x1+cos5x2+cos5x3+cos5x4=0
cos7x1+cos7x2+cos7x3+cos7x4=0
cos11x1+cos11x2+cos11x3+cos11x4=0
Where i have 4 unknown variables x1, x2, x3, x4.
Condition is
0 < x1 < x2 < x3 < x4 < pi/2.
Can you please help about the code.
Thanking you sir
Mail: revanthroy507@gmail.com
Check your email.
i want to sir, please send me too, faqih0776@gamil.com
Check your email.
Sir send me the full MATLAB code please. My email liujun605194@gmail.com
can i have it to sir? ansarullahzulkifli@gmail.com
thanks you
can i have it to sir? ansarullahzulkifli@gmail.com
thanks you
can i also request a copy of this code? many thanks.
jepmanansala@yahoo.com
Check your email.
Sir send me the full MATLAB code please. My email ahmadeid@gmail.com
can u please send me the mathlab code of pso .
thank you
Sent
Would you mind sending me the matlab code about ( optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? my email ID: ahmadeid@gmail.com
Check your email.
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 30 bus and IEEE using PSO? Can you please send me the Matlab coding
Email: lahcenmjz@gmail.com
Check your email.
Hi sir
can you send me the Matlab coding
Email:coe.15.101@student.uotechnology.edu.iq
check your emaill
Sir,
Can you please send me the MATLAB coding for optimal location and sizing of shunt compensators using any optimization algorithm.
My mail id: cvenkat1980@gmail.com
thank you sir for this awesome explanation, if you could please send me the optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? I would be grateful. mahmod_hmeda2000@yahoo.com
hi sir, can you send me the optimazation placement of capacitor bank in the distribution system?. prasetyofumi@gmail.com
hi sir, can you send me the optimazation placement of shunt capacitor bank in the distribution rasdial system? to reduce the power losses. my email prasetyofumi@gmail.com. thanks
hello sir, my name kukuh…did you do the power flow optimization in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding? kukuh.widarsono@gmail.com. thanks
hi sir, would you mind sending the MATLAB coding for optimal location and sizing of shunt compensators using pso optimization algorithm.
my emaiL: fatmaalgharib25@gmail.com
thanks in advance
hello sir, can you send me the matlab codes for the following question?
my email is tobegritty@163.com
A warehouse serves a region that has 199 customers. For convenience, we use customers 2 to 200 to refer to these customers. This can be modeled by an undirected network of 200 nodes, where node 1 is the warehouse, and nodes 2 to 200 are customers. Their pair-to-pair distance is given as a 200*200 symmetric matrix. The warehouse has 8 trucks, and each truck can serve up to 25 customers on each trip. The objective is to minimize the total distance.
hi sir ,can you send me the matlab code pso and DE to mamo.royal704@gmail.com
Check your email.
Check your email
This comment has been removed by the author.
This comment has been removed by the author.
Dear prof,
I'm also interested to the PSO matlab code on optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus. Thanks. My email: nguimfackjdedieu@yahoo.fr
Hey , would you help me with the pso matlab code on optimization of coefficients of Bandpass FIR FILTER.
my email id is saumyachaudhary58@gmail.com
CAN YOU PLEASE SEND THE MATLAB CODE FOR CLUSTER HEAD SELECTION IN WIRELESS SENSOR NETWORKS USING 'PSO' OR 'GA'
Your email?
This is very interesting content! I have thoroughly enjoyed reading your points and have come to the conclusion that you are right about many of them. You are great.
Webdesign
sent me the IEEE 33 bus optimization code at hanswilhelm314@gmail.com
Sir send me the full MATLAB code please. My email STALG0227@GMAIL.COM
I NEED CODE FOR Optimization of the permutation technique by the PSO method. with turbo code
can i get code for optimal location ??
IF possible send me at vishwaspatel0207@gmail.com
kindly send me MAtlab code on
engrmbasit@gmail.com
sir can you send me full matlab code on my email id
(kathiriya.kano@gmail.com)
kindly send me Matlab code on
mohit.kakkar@chitkara.edu.in
Dear sir,
Could u kindly provide the code for optimal placement of TCSC using PSO.
my mail id: bn.mtps.14@acharya.ac.in
Sir,
Thanks for this excellent tutorial. Could you please send me the code and also a code for plotting the convergence of objective function. Cost vs iteration graph.
my email id is bttest007@rediffmail.com
Respected Sir,
Please send the code to solve a set of non-linear equations using PSO.
Email ID: drish131196@gmail.com
please can i get pso m file for optimal placement of capacitor banks in ieee 33bus radial distribution system on my e-mail:kabirdregis@gmail.com
thanks!
Hi sir,
Please can I get pso m file for suspension system of a car or railway.my email :abdulaiayirebiankrah@gmail.com
Hi,
I would to use PSO on tuning my cascade force,velocity and current PI controllers parameters. any help is appreciated.
Sir,
Sir,Can you please send me the MATLAB coding for optimal location and sizing of any shunt FACTS device like STATCOM using PSO
My mail id: preethi.jimmy@gmail.com
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding?
febriandius1997@gmail.com
thank you sir
Hi sir, if you do not mind can you provide me the MATLAB code for optimization of Rotary inverted pendulum with PID controller using PSO?My email is hcwei1996@gmail.com
i want too sir, please send me full matlab code on my email
rahmanyabie@gmail.com
thank you sir
Sir,
Please send me the PSO code which is generalized.
I want to run nonlinear cost function which is iterative.
Is it possible to apply general PSO(which required only cost function,population size,iterations,Lb,Ub)
My email id is spdiwan1984@gmail.com
Thank you in advanced.
I would like to apply it for real time. Is it possible for fast dynamic system? Is it fast?Is it convertible to VHDL using HDL coder of Matlab?
send me code my email jraysbhadoriya@gmail.com
Would you mind sending me the matlab code of this video?
fadihamed93@gmail.com
Can i have this code mr, My ariefkeliknugroho@gmail.com
I require the PARTICLE SWARM OPTIMIZATION (PSO) MATLAB CODE .m file sir kindly send my mail id eeevijay2009@gmail.com
Hi Sir,Can you please send me the MATLAB code PSO(particle swarm optimization) for Minimizing BER(Bit Error Rate) between two images?
These two images are used with a coefficient in Watermark.
The algorithm helps to select the coefficient to minimize the difference between the original image and the Watermark image (image containing Watermark).
Thanks for your help!:)
Hi Sir,Can you please send me the MATLAB code PSO(particle swarm optimization) for Minimizing BER(Bit Error Rate) between two images?
These two images are used with a coefficient in Watermark.
The algorithm helps to select the coefficient to minimize the difference between the original image and the Watermark image (image containing Watermark).
email: marzi.kp20@gmail.com
Thanks for your help!:)
Hai sir,
can you please provide PSO with single diode solar file
Thank you sir
Your email?
hi
can you please send me PSO code of Beale function
f(x) = (1.5 – x1 + x1.*x2).^2 + (2.25 – x1 + x1.*x2.^2).^2 + (2.625 – x1 + x1.*x2.^3).^2;
BEALE([x1, x2]) returns the value of the value of the Beale
function at the specified points. [x1] and [x2] may be vectors.
The search domain is
-4.5 < x_i < 4.5
please mail on vishal.wankhede@yahoo.com
Please I need PSO code for ripple torque reduction in switched reluctance motors by optimizing the turn on and turn off angles of the phases considering 6/4 SRM
Your email?
Hi need PSO code on Schaffer N2 function.
Please send the code to my email address: nguyendangquy1983@yahoo.com
Many thanks
please sir i need pso code for for cluster head energy consumption in wireless sensor network
Your email?
Hi! Did you do the optimization of size and placement of distributed generation in a IEEE 14 bus and IEEE 33 bus using PSO? Can you please send me the Matlab coding? My email address: gabnunes8@gmail.com
Kindly send me code. My email is tayakur@gmail.com.
Thanks
Hi Sir, great work here. Can you please send me the code to optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? My email: atabs.wunde@gmail.com . Thank you!
hello sir
can you please send me the PSO mathlab coding for optimal placement and sizing of DGs. here is my email address: yirgaamaha7@gmail.com
hi sir can you send me PSO code for optimal sizing of UPFC for transmission line loss minimization and voltage profile improvement
at
wakjirawakjira02@gmail.com
Hi sir,
I have an algorithm called EEEHR for wireless sensor networks, which is on the basis of LEACH algorithm. Now i am trying to implement my algorithm using optimization techniques. Is there any way of implementing the PSO or Genetic Algorithm in the same algorithm.
Kindly do the needful.
Mail id: ezhisang20@gmail.com
Hi sir,
I have an algorithm called EEEHR for wireless sensor networks, which is on the basis of LEACH algorithm. Now i am trying to implement my algorithm using optimization techniques. Is there any way of implementing the PSO or Genetic Algorithm in the same algorithm.
Kindly do the needful.
Mail id: ezhisang20@gmail.com
If any clarification required i will send you my EEEHR protocols m-file.
Hello sir!I am currently doing a project on this for my final year in university. Did you do the optimization of size and placement of distributed generation in a IEEE 9 bus and IEEE 14 bus using PSO? Can you please send me the Matlab coding? My email address: haniamelia97@gmail.com
Dear sir, Can you please send me the matlab code, sharing my email archana.narayanan88@gmail.com
Thank you in advance.
Dear Sir,
Could you please send me the PSO mathlab coding for optimal placement and sizing of energy. Here is my email address: Jae Gon Kim
My email:Jae Gon Kim
Email:jaegonkim.edu@gmail.com
Hello
thanks for the presentation
can you send me the code in my Email : chaouki306@gmail.com
I am looking to apply the PSO to the parameter identification of photovoltaic cell.
Sir please send me too. fab.ankit10@gmail.com
please send me code for ieee 57 bus.
i need the pso code to implement the following transfer function
P_11 (s) = (-0.288s^2 +0 .8825s + 0.5452)/(1.247s^3 + 5.365s^2 + 4.39s + 1)
P_22 (s) = (5.421s^2 +1.693s – 7.229)/(s(7500s^2 + 17500s + 10000))
i need the pso code to implement the following transfer function
P_11 (s) = (-0.288s^2 +0 .8825s + 0.5452)/(1.247s^3 + 5.365s^2 + 4.39s + 1)
P_22 (s) = (5.421s^2 +1.693s – 7.229)/(s(7500s^2 + 17500s + 10000))
email:divvsri@gmail.com
Sir Can you provide me MATLAB Coding for Vehicle routing problem using Particle swarm optimization !
Sir Can you provide me MATLAB Coding for Vehicle routing problem using Particle swarm optimization !
email : leelakrishna.vuriti@gmail.com
Would you mind sending me the matlab code about ( optimal reactive power dispatch for loss minimization with multiple distributed generation in a IEEE 33 bus and IEEE 69bus using PSO?
manojaryal87@gmail.com
I want to apply pso to minimize electricity cost … some body please help me
Your email, I have similar work.
Hello sir, please i want a matlab code for modelling energy efficiency in 5G network using particle swarm optimization
Hello,optimization of size and placement of distributed generation in a IEEE 33 bus and/or IEEE 69bus using PSO the Matlab coding, Would you please send me email:mclostavi@gmail.com
Please, Sir, I am trying to use PSO to determine the coefficients of the dependent and independent variables. Those various are matrices of for example 1 by 10 sizes and the coefficients are unknown. For example: y=a0+a1x1+a2x2…anxn. The dependent and independent variables are given but the coefficients are to be determined.
your email?
Sir,I too want the PSO code my mail id:rama_vishwa@gmail.com
Sir, please send me the code of pso.
Mail id : luharparth70@gmail.com
Your email is incorrect.
Check email.
shwethanrupathunga@gmail.com
shwethanrupathunga@gmail.com
Can I get the Matlab code of optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO?
your email?
Hi sir, can you share the code with me too? My email is nurulatikahmohdsharif91@gmail.com
Thank you so much sir
bmaharana532@gmail.com
Hello Sir, can i get matlab coding for this too? "optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO"
This is my email: andimnurputra@gmail.com
Thanks you
Thank you for the video. As a beginner, it helps me a lot. I want to ask a favor, can I have the PSO Matlab code too?
This is my email: muhammad_naeim@yahoo.com
Thank you very much.
Dear Sir, I also in need of your code
my mail id: gyanaranjan.iitb@gmail.com
pls erginkayar07@gmail.com
Hello ,can you send me the code of Matlab please?
Hello Sir, I am wondering to know could I have the code of optimization of size and placement of distributed generation in a IEEE 33 bus. That will be really helpful and my email is jufanglue@gmail.com. Thank you
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding? nouropport2010@yahoo.com
Hi sir could you please semd me the full code of pso algo he is my account abadliahamza21@gmail.com
Dear Sir,
Could you please send me the PSO mathlab coding for optimal generation resource scheduling of hybrid generation power system (hydro,wind &bio gas) to help avoid a black out effect.
email : abkassaw@gmail.com
i want to sir @samidmalang97@gmail.com
i want to sir @samidmalang97@gmail.com
i want to sir please @samidmalang97@gmail.com
Dear,
Can you send me the code please. I am trying to optimize firm´s profit in the telemobile market with PSO. Mi mail is cata_aluanlli@hotmail.com
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding? pankaj.karnani47@gmail.com
hi can I get the code at amirhsn51@gmail.com too?
thank you very much indeed!
sir, i need the pso matlab code for optimization for cost reduction of hybrid renewable energy system.please send it in my mail- rajrupslg@gmail.com
sir , am doing my thesis on power quality improvement using SVC and I want optimal placement and size SVC using PSO algorithm please send code at email akililugetahun@gmail.com. with regard!!!
Here is Mr Benjamin contact Email details,lfdsloans@outlook.com. / lfdsloans@lemeridianfds.com Or Whatsapp +1 989-394-3740 that helped me with loan of 90,000.00 Euros to startup my business and I'm very grateful,It was really hard on me here trying to make a way as a single mother things hasn't be easy with me but with the help of Le_Meridian put smile on my face as i watch my business growing stronger and expanding as well.I know you may surprise why me putting things like this here but i really have to express my gratitude so anyone seeking for financial help or going through hardship with there business or want to startup business project can see to this and have hope of getting out of the hardship..Thank You.
Hello, sir. I need code about deep learning optimization parameter using pso. Can you send me the code? Here is my email: dairesy419@gmail.com
Hello Sir, Thanks for this explanation and can you please send me the code for this PSO optimization
my email is aroseglinks@yahoo.co.uk and aroseglinks@gmail.com. pls help me with the PSO Optimization and Firefly algorithm code , pls can one combined PSO& Firefly algorithm as a project?
please send me the code at fawadpk4@gmail.com.
thanks sir
Hi, I am trying to work on PSO on my mini-project for school. Can you please send me the PSO matlab code to irenelee04@gmail.com? Thank you
Sir, could you send me this code by email?
luishenrique-kinho1@hotmail.com
hai sir.. can you send me coding matlab pso? thankyou
email : viandra48@gmail.com
Hello sir,
Please if you did the optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding?
Email. santonicsanta@gmail.com
if got the code pleas send to me bro vansyah31@gmail.com
Hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding?
amin.abedi.2020@gmail.com
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus. Can you please send me the Matlab coding? tarironcube@gmail.com
Please if you have a PSO code for optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus?
your email?
Sir, could you send me this code by email?
niksandre@ya.ru
Thank you!
send me to my email ivandwiptr@gmail.com. Thank You
Sent.
sir ,please help me to implement a robot path planning using pso in 3 dimensional environment and 3 dimensional obstacles in matlab.
send me to email bankasangeeta3@gmail.com
Sent.
sir please pso code i want to implement wireless sensor network using pso
Your email?
Hello sir, can you share with me the pso code ?. Thanks
ajinxpal96@gmail.com
hai sir.. can you send me coding matlab pso? thankyou b.k.gokturk@gmail.com thank you
did you get the code,if yes please email ,e too at
danishayaan@gmail.com
Thanks
Sir can you please send me the matlab code using pso at
danishayaan@gmail.com
thanks and regards,
Sir,please send the code , or any one who got the code please send.
kmrarohita99@gmail.com
sir. can i have the codes? tq
ezajaan032@gmail.com
Sir, send me too please please thank you. My email is
bolorb730@gmail.com
Sir, could you please email me the code at areejfatima95@gmail.com
Thanking you in anticipation.
Hi Sir, please send the code to godfredbrown@gmail.com
Sir, I attend webinar and known about this online blog. can you send me the PSO code of the following (congestion management, COST minimization, ATC calculation)
if it is not available ,kindly provide the above video PSO code for TEACHING purpose.
REPLY
rajsingh.raj0@gmail.com
could any one who got the code send it to me plz ASAP haidy.eldiasty@gmail.com
Sir i need pso code for optimal placement of DVR or DG in 33 bus system ,sir could u please provide the codes ! It would be a great help!!
Email: suresureshkumarsl123@gmail
Thank you
Sir i need pso code for optimal placement of DVR or DG in 33 bus system ,sir could u please provide the codes ! It would be a great help!!
Email: sureshkumarsl123@gmail
Thank you
Sir i need the same code for placement of dg in 33 bus system ,it would be s great help sir
sureshkumarsl123@gmail.com
I need this matlab code for my research work, this code help me lots in my research work after modify it, kindly sent this code to me if you get from owner, I shall be very thankful to you;
Muhammadimranali82@gmail.com
I need this matlab code for my research work, this code help me lots in my research work after modify it, kindly sent this code to me if you get from owner, I shall be very thankful to you;
Muhammadimranali82@gmail.com
I need this matlab code for my research work, this code help me lots in my research work after modify it, kindly sent this code to me if you get from owner, I shall be very thankful to you;
Muhammadimranali82@gmail.com
please share me this code. thank you.
basiriamir76@gmail.com
good evening sir, please can you send me the pso code for radiolocation of mobile networks?
thank you in advance
email: chekemalban@yahoo.fr
email: chekemalban@yahoo.fr
please send me the code sir
hesham.kamal2151994@gmail.com
Hi sir
please share me this code. thank you.
azer1377@yahoo.com
sir
can i get code for optimal placement of PMU using PSO .
Email.?
hello sir, can i get code for course scheduling using PSO ?
please, send me to email risyqaayafitri@student.upi.edu
thank you
Hello sir, can you send me the pso code for course scheduling? Thank you
Email : athiyahadzhari@gmail.com
Hello Sir, please can i get the code
ampaduh@gmail.com
Hello sir, kindly send me the code
Emaraty_a99@hotmail.com
Hello Sir. Please i need you to help me with the code on minimization of cost for a hybrid renewable system. thank you.
my email, owoeyefunmilola@gmail.com
please send me the code sir
mustafa9r07@gmail.com
Hello Sir, could you please send me the full matlab code? This is my email – majidmahrima@gmail.com. Thanks in advance.
resp sir, can you please share the code for optimization of size and placement of distributed generation using PSO in any ieee bus system. this is my email garimagautamkota@gmail.com.
thanking you sir in advance
hello sir, can u please email me the code for ieee 30 bus system, this is my email haziqshaari3@gmail.com
Hello sir, can you please send the PSO code for Planning and Optimization Approach of a New Generation Cellular Network Capitalizing on the Existing Sites. Thank you Sir in advance
obamasylvestre@gmail.com
my id is rahul_som@rediffmail.com
hi can I get the code for optimal placement of dg at e.shahry786@gmail.com
Please share code at e.shahry786@gmail.com
please can i get pso code for adding DG and D-STATCOM FOR 33 &69 BUS hazimwazni81@gmail .com
Dear sir, Can you please send me the matlab code, sharing my email minhducqti1996@gmail.com
Thank you in advance.
This comment has been removed by the author.
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus ( or optimization filter harmonic) ? Can you please send me the Matlab code? thank you very much
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus ( or optimization filter harmonic) ? Can you please send me the Matlab code? thank you very much. Mail: hongphat.cdns9@gmail.com
This comment has been removed by the author.
Hello Sir,
Can you send me the full matlab code? It will be very helpful. Thank you.
Email: kajalchy017@gmail.com
Hello Sir,
did you do the optimization of size and placement of distributed generation in a IEEE 33 bus using PSO? Can you please send me the Matlab coding?
Email : kajalchy017@gmail.com
can you send me this code on ramnath@dstarena.com
sir, can u please send me PSO code to ayesha.asiya@gmail.com
Thank you.
send me to my email uddandamk@gmail.com. Thank you
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding? Send me to my email uddandamk@gmail.com
Sir, can I have the codes please. My Email is zakaria13173@gmail.com
sir,would you please send me your code at 193010015@iitb.ac.in
I want to apply PSO. Please can you send m-file code to me sir.
Best
kemalucak15@gmail.com
sir,can i have the pso code for relay coordination(for any ring bus system)or two dimension non linear equation optimization please.my emailid-sabitenduprudent@gmail.con
Sir,could you please provide me the matlab pso code for economic and emission dispatch for IEEE 14 and 30 bus.
Thank you, and my mail id is dharshenirp@gmail.com
Hi Sir. Could You please send me the code.
this is my email.
Kevrojaramillo@gmail.com
thanks so much
atilcosgun@gmail.com
atilcosgun@gmail.com
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 30 bus and IEEE 14 bus using PSO? Can you please send me the Matlab coding? Send me to my email soundarya2913@gmail.com
can i have it too sir? can you please email me at azimyazli97@gmail.com
kindly sir I need the same code for optimal sizing and location of DG generators and capacitor in redial distribution system. kindly send it to me thank you
bilalengr2017@gmail.com
HOW I GO MY DESIRED LOAN AMOUNT FROM A RELIABLE AND TRUSTED LOAN COMPANY LAST WEEK. Email for immediate response: drbenjaminfinance@gmail.com Call/Text: +1(415)630-7138 Whatsapp +19292227023
Hello everyone, My name is Mr.Justin Riley Johnson, I am from Texas, United State, am here to testify of how i got my loan from BENJAMIN LOAN INVESTMENTS FINANCE(drbenjaminfinance@gmail.com) after i applied Two times from various loan lenders who claimed to be lenders right here this forum,i thought their lending where real and i applied but they never gave me loan until a friend of mine introduce me to {Dr.Benjamin Scarlet Owen} the C.E.O of BENJAMIN LOAN INVESTMENTS FINANCE who promised to help me with a loan of my desire and he really did as he promised without any form of delay, I never thought there are still reliable loan lenders until i met {Dr.Benjamin Scarlet Owen}, who really helped me with my loan and changed my life for the better. I don't know if you are in need of an urgent loan also, So feel free to contact Dr.Benjamin Scarlet Owen on his email address: drbenjaminfinance@gmail.com BENJAMIN LOAN INVESTMENTS FINANCE holds all of the information about how to obtain money quickly and painlessly via Whatsapp +19292227023 Email: drbenjaminfinance@gmail.com and consider all your financial problems tackled and solved. Share this to help a soul right now, Thanks..
HOW I GO MY DESIRED LOAN AMOUNT FROM A RELIABLE AND TRUSTED LOAN COMPANY LAST WEEK. Email for immediate response: drbenjaminfinance@gmail.com Call/Text: +1(415)630-7138 Whatsapp +19292227023
Hello everyone, My name is Mr.Justin Riley Johnson, I am from Texas, United State, am here to testify of how i got my loan from BENJAMIN LOAN INVESTMENTS FINANCE(drbenjaminfinance@gmail.com) after i applied Two times from various loan lenders who claimed to be lenders right here this forum,i thought their lending where real and i applied but they never gave me loan until a friend of mine introduce me to {Dr.Benjamin Scarlet Owen} the C.E.O of BENJAMIN LOAN INVESTMENTS FINANCE who promised to help me with a loan of my desire and he really did as he promised without any form of delay, I never thought there are still reliable loan lenders until i met {Dr.Benjamin Scarlet Owen}, who really helped me with my loan and changed my life for the better. I don't know if you are in need of an urgent loan also, So feel free to contact Dr.Benjamin Scarlet Owen on his email address: drbenjaminfinance@gmail.com BENJAMIN LOAN INVESTMENTS FINANCE holds all of the information about how to obtain money quickly and painlessly via Whatsapp +19292227023 Email: drbenjaminfinance@gmail.com and consider all your financial problems tackled and solved. Share this to help a soul right now, Thanks..
Please Sir i want use PSO for optimal placement of dg in a standard IEEE-33 bus systems please sir help me with the matlab code. my email is msgabasawa@gmail.com thank you sir
Sir, did you do the optimization using pso with constraint handling technique for 6-unit system? Can you please send me the code?
Hello sir, can you help me to solve economic load dispatch problem using pso with constraint handling method. Can you send me the matlab code for 6unit and 30unit system. Your help will help my study. Email me at kamarulamin660@gmail.com
HOW I GO MY DESIRED LOAN AMOUNT FROM A RELIABLE AND TRUSTED LOAN COMPANY LAST WEEK. Email for immediate response: drbenjaminfinance@gmail.com Call/Text: +1(415)630-7138 Whatsapp +19292227023
Hello everyone, My name is Mr.Justin Riley Johnson, I am from Texas, United State, am here to testify of how i got my loan from BENJAMIN LOAN INVESTMENTS FINANCE(drbenjaminfinance@gmail.com) after i applied Two times from various loan lenders who claimed to be lenders right here this forum,i thought their lending where real and i applied but they never gave me loan until a friend of mine introduce me to {Dr.Benjamin Scarlet Owen} the C.E.O of BENJAMIN LOAN INVESTMENTS FINANCE who promised to help me with a loan of my desire and he really did as he promised without any form of delay, I never thought there are still reliable loan lenders until i met {Dr.Benjamin Scarlet Owen}, who really helped me with my loan and changed my life for the better. I don't know if you are in need of an urgent loan also, So feel free to contact Dr.Benjamin Scarlet Owen on his email address: drbenjaminfinance@gmail.com BENJAMIN LOAN INVESTMENTS FINANCE holds all of the information about how to obtain money quickly and painlessly via Whatsapp +19292227023 Email: drbenjaminfinance@gmail.com and consider all your financial problems tackled and solved. Share this to help a soul right now, Thanks
Hello sir,
Can u please email me the PSO code for optimal location of PMU in IEEE 14 bus system.
MY email is shikar.3122@gmail.com
sir, can this video solving unit commitment problem?
Thank you sir, for the code but i want PSO code for finding the optimal location of PMU in IEEE 14 bus system but you have sent just PSO code.
Please help me in finding the optimal location of PMU by using PSO.
hi sir, do you have the code for the optimization of size and placement of distributed generation in a IEEE 33 bus using PSO? Can you please send me the Matlab coding? my email id mumtahina58eee@gmail.com
hi sir, did you do the optimization of size and placement of STATCOM in a IEEE 33 bus using PSO? Can you please send me the Matlab coding at mumtahina58eee@gmail.com
Hi sir myself Naveen and I'm working on my project can u help me by send ing this code my mail id:. naveenofficial17@gmail.com
Thank you sir,
Sir can u send me the code please ,it will helpful for my ongoing project my mail id: naveenofficial17@gmail.com
Thanks sir,
Hi sir can u send me the code to my mail naveenofficial17@gmail.com
Sir,can you send me the code for power system reliability improvement by DG sets using pso algorithm to my email is harshithanagabhushana@gmail.com
Hi sir, I kindly request you to support me by sending a MATLAB code for "distribution network reconfiguration by optimal placing of sectionalizers and tie-switches for loss minimization and reliability enhancement using PSO algorithm?''
Can you please send me the Matlab coding for a 33 bus?
Email: aberalem43@gmail.com
Thanks for your help in advance.
Did u gt the reply yet?
Hello sir,
It was a very good and enriching video of yours. Cn sir also send me the codes If possible, I'm a student.
My id= jnec05170015@jnec.edu bt
Hello sir,
Cn sir be able to send me codes on optimal placement of FACTS on a 36-bus system using PSO
Hello Sir¡
Could you please send me the code to my email: laty23fa@gmail.com
I would appreciate if you can email me the Matlab code for academic purposes. abbasrex70@gmail.com
sir, it was a nice explanation. it would be helpful if you share the coding with
kanidinu0203@gmail.com
hello sir. can you please send me the MATLAB coding for PSO. my email.id is saswatididi@gmail.com
Please can you send me the code
My email is alousheh95@gmail.com
Hello, Sir. can you give me the code, please :). my mail: caisyy10@gmail.com .
Hi. I tried copying the code as you lectured it in your youtube video. I copied it as it is, however my figure has been plotting it linear instead of scattered.
Also, why did you divide this equation: swarm(i, 1) = swarm(i, 1) + swarm(i, 5)/1.2 by 1.2
Many thanks
Why the video has no voice?
sir kindly send me a copy of this copy please
aaliyanjavaid89@gmail.com
Hi sir, could you please send me the full code of pso algorithm? This is my email ad.hawthorne10@gmail.com. Thank you in advance.
Greetings Sir!
I am working on the same topic and this video helped immensely. I would be very grateful if you can send me the code for this at:
atulya.arya06@gmail.com
Thanks & Regards
Greetings Sir!
I am working on the same topic and your video was of great help. I will be very grateful if you send the code at:
atulya.arya06@gamil.com
Thanks & Regards
Can you please send me the code in my mail" nabanita.cc@msit.edu.in"
Thank you in advance.
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding? email : bagashuda1998@gmail.com
Sir, help me with the PSO code. karinateokiy@gmail.com
Can i get the matlab code of pso? Please
My mail id: sonalipadhip@gmail.com
sir please send this code by fikadualemayehu0649@gmail.com
from my thesis i have three wind plants, one biogas plant and 18 hydro power plants, my issue is to minimize a blackout effect by making optimal generation scheduling, using PSO MATLAB coding , could you send me the MATLAB PSO code of generation scheduling???(abkassaw@gmail.com)
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding? engr_kalim125@yahoo.com
hi sir, did you do the optimization of size and placement of distributed generation using PSO? Can you please send me the Matlab coding? engr_kalim125@yahoo.com
vui long goi cho toi mã Matlab tối ưu vị trí đặt nguồn phân tán trên mạng ieee 13 bus, qua mail datdcnk29@gmail.com
Would you mind sending me the matlab code about ( optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? , my email: abdulhadiha95@gmail.com
Please if you have a PSO code for optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus
Send me at Email: mahsanraza164@gmail.com
Hello ,can you send me the code of Matlab please?
hussienjafrouny@gmail.com
could you please send the Matlab Code,
Thank you in advance.
a.asswad@studenti.unibs.it
Dear Mr. Matlab Online, kindly send me this code for studying and analysing, I think this is a standard Matlab code for PSO. My email is dovantrinh39@gmail.com.
Thanks much.
xin vui lòng gửi cho tôi mã matlab về (tối ưu hóa vị trí DG trong bus IEEE 13) vào email datdcnk29@gmail.com. cảm ơn rất nhiều.
Vui lòng gửi cho tôi mã matlab về tối ưu hóa vị trí DG trong mạng ieee 13 bus, qua email datdcnk29@gmail.com . Cảm ơn rất nhiều!
merhaba rica etsem kodları alabilir miyim ozhanutku07070@gmail.com
Sir, can I have the codes at vignansanthosh@gmail.com . Thankyou in advance!
Hello dear
would I get Code for Optimal placement of switches in power distribution system reliability assessment using binary PSO optimization technique?
Hello dear
please send me code for optimal placement of switches in power distribution reliability using PSO
hello sir, can I also get the code. I have the same problems. Thank you, Sir. Email : ghazy.25@gmail.com
Sir, can u send the PSO MATLAB code to prashanthna@bmsit.in
Sir, Can u send the PSO code to prashanthna@bmsit.in
BUEN TRABAJO!!! ME PODRIA AYUDAR CON UNA COPIA DE ESE CODIGO. GRACIAS DE ANTEMANO
alank.rodriguez@hotmail.com
please send me matlab code about distributed generation location optimization on ieee 13 bus network using pso. Thank you very much! email datdcnk29@gmail.com
please send me matlab code on distributed generation location optimization condition with loss minimization on ieee 13 bus network using pso. Thank you very much! email datdcnk29@gmail.com
sir can you send me full madtlab code please my email id ssankaran02@gmail.com
hi, please could you send me the code ? thank you; my email adress is
aminadb9@gmail.com
hi, please could you send me the code ?
e-mail adress is : aminadb9@gmail.com
thank you
do you have any programme for relay coordination optimization using non linear programming of ant technique
Hi Sir, can I have the codes for optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding? Send me to my email eng.marllon.rodrigo@gmail.com . Thanks!
sir greetings!
appreciate the your work . i need matlab code for optimization of size and placement of distributed generation in a IEEE 33 bus using PSO and optimal location of single tuned filter for DG system in a IEEE 33 bus using PSO algorithm . if you have please send me the following email ID: dasarinarasimharao@gmail.com Thanks in advance.
i want too sir, please send me full matlab code on my email
amhari40@gmail.com
thank you sir
Please Send Me the Code:
bhaskar.fabs@gmail.com
dear Sir,I would like to get the matlab m file for this design, thank you for your help…. my email is rifdian.anto@gmail.com
Thanks Sir for your tutorial. I would appreciate if you can send me the code. Thanks (chaudhrie.adil@gmail.com)
Sir, can I have PSO code in MATLAB for profit maximization problem in Inventory control system ? My mail id is parnaritumondal@gmail.com
Sir, can I also have the codes. Email: nizlin7374@gmail.com. Thanks in advance
Hey sir plz send me code at nidhi.goyal@kiet.edu
Hello sir, can you please send the PSO code my email is emmanuelnyantakyi94@gmail.com
Hello Sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus using PSO? Can you please send me the MATLAB coding?
Email : rajchakraborty2105@gmail.com
hello sir can you send the pso code based on machine learning algrorithm like gaussian regressorm,svr,mlp,random forest regressor
hi sir, can i too have the codes for generation expansion planning using pso? or can you send me this pso code? you can send to my email afiqamirulzainuldin@gmail.com
I wanted to carry out the following process, will your code work out in my case. I have three parameters – Namely Cutting Speed and Depth of Cut and Feed Rate for a Machining Process in a CNC Machine, I will obtain the Surface Roughness from this experiment. In turn, find out the optimized Cutting Speed, Depth of Cut and Feed Rate. Later use this to identify if the Desired SR and Acutal SR are same – SR = Surface Roughness. Awaiting your reply
I wanted to carry out the following process, will your code work out in my case. I have three parameters – Namely Cutting Speed and Depth of Cut and Feed Rate for a Machining Process in a CNC Machine, I will obtain the Surface Roughness from this experiment. In turn, find out the optimized Cutting Speed, Depth of Cut and Feed Rate. Later use this to identify if the Desired SR and Acutal SR are same – SR = Surface Roughness. Awaiting your reply – sunithbabu@msrit.edu
hi sir, do you mind sharing the code to me? do you have the code for generation expansion planning? my email is afiqamirulzainuldin@gmail.com thank you so much sir.
all are very useful thanks
i want a code for (improvement quality of VOIP over MANET using PSO)
Hello sir, did you do the optimization of size and placement of distributed generation(DG) in a IEEE 33 bus and IEEE 69bus using PSO? Can you please send me the Matlab coding? Send me to my email adeelkhanpakistan@gmail.com
Hello Sir,
Can you send me the full matlab code? It will be very helpful. Thank you. email id : rmsfine7@gmail.com
Salam , Hello
Could you please send me the code ?
mhm2180106@gmail.com
Sir, I want full code of PSO.PLease pfrovide it.Email-id is sidhu.amandeep23@gmail.com
Hello sir. this code will be very helpful for my final year project. my email is syafuan510@gmail.com . Your help is truly acknowledge
Hello sir,can I get this code on mail..
priyankapsuryawanshi@gmail.com
Sir, can I have the codes please. My Email is syahrulaiman66@gmail.com
Hi sir, Have you done the optimization of size and placement of distributed generation in a IEEE 13 bus and IEEE 33 bus using PSO? Can you please send me the Matlab coding? Send me to my email s.n.mohanty09@gmail.com
hello i am having a had time using particle swarm or any other method to optimize Neural network weights and bias. please can you assist me with this?
Hi sir
can you send me the full matlab code please at m.nuri.hashmi@gmail.com , i need it for my thesis, thank you
Hi sir
i need this matlab codes for my thesis
can you send me at m.nuri.hashmi@gmail.com
thank you
sir, can u please send me PSO code to marwan.mbarek@gmail.com
Thank you.
Hi
I am trying to implement a cost minimization for load scheduling and shifting using this method will be helpful if any one knows and has any code for matlab for this
email -efeegbra1@gmail.com
Can I have pseudo code for particle swarm optimisation
Would you mind sending me the matlab code about ( optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO? my email ID: osamaanzar1234@gmail.com
Can I have the coding pls? My email is shalini4925@gmail.com
can you share PSO MATLAB code for ieee30 bus system? send me on my email
shafaquatali1234@gmail.com
Sir, Can I have the codes for PSO for optimal location and sizing of shunt capacitor in IEEE 14 bus network loss minimizaton. My email: surenchaudhary@gmail.com
sir, i need matlab code my email is sidraaslam351@gmail.com
send me code at email rajsingh.raj0@gmail.com
and your gpay account detail.
Hello sir, I published two ieee confernce paper regarding Electric vehicle. Now I want to do optimzation algorithm in my research work. Kindly mail me the pso matlab code for optimization of size and location of D-STATCOM. My mail id is sasmita2020@gmail.com. Thank you Sir.
Would you mind sending me the PSO matlab code sir..this is my email : muhdforever01@gmail.com
Sir, please send me the matlab code for minimize the transistor sizing to get the minimum delay and power.
My email is vinaysystems99@gmail.com
Thanks
Sir can you please send me the code?
email me santhuee020@gmail.com
sir, good morning , sir am doing real time project on my pg program, if you don't mine please send me 69 bus code it will be helpful to more sir. my email id :nagarjuna.tollamadugu@gmail.com
Hello Sir, can i get matlab coding for this too? "optimization of size and placement of distributed generation in a IEEE 33 bus and IEEE 69bus using PSO"
This is my email: mohitdurgapal3@gmail.com
Olá bom dia, gostaria de ter acesso ao código em Matlab. Meu email nandaleite333@gmail.com. Desde já agradeço
Sir, can you please send the codes for optimal placement of pmu using pso for ieee buses. Send me to my mail : donthulanaveen2000@gmail.com
can i have the code sir my email sidoumokhtar99@gmail.com
Sir can you send me the complete code for particle swarm optimisation @bhuvanaganesh2711@gmail.com
Hi Sir, Please if you have a PSO code for optimization of size and placement of capacitor bank on IEEE 33 bus and IEEE 69bus. Please, you can send to this email: nkasabere@gmail.com
sir, can you please send me codes my email is imranali.ghoto@gmail.com
Hello sir, can you please, if you have, send me a code for optimization of placement of Battery Energy Storage System in a ieee 33 bus using PSO? Please send it to this email: jennysorbet@gmail.com
hi sir, did you do the optimization of size and placement of distributed generation in a IEEE 33 bus using PSO? Can you please send me the Matlab coding? Addisiebaylie76@gmail.com
Thank you !
Sent
dear Sir, could you please send me the matlab code to rifdian.anto@gmail.com….thank you
Sent
Hello sir, Could you please send me pso code for optimizing network throughput and packet loss in wireless sensor networks? I have been trying to make it but I have been getting errors.
please ,can i get matlab coding for “optimization of size and placement of distributed generation in a IEEE 33 bus using PSO”.
thank you
please ,can i get matlab coding for “optimization of size and placement of distributed generation in a IEEE 33 bus using PSO”.my mail id is kalabharathi.bvvl@aec.edu.in
thank you
Hello sir, please can i get MATLAB code for optimizing throughput and packet loss in wireless sensor networks using PSO, I’m trying but i keep getting errors. I need assistance.
la clavada de randall otoole
hi Sir
Can you please send me the code aizaz.farid@outlook.com
send me this code at my E-mail address
ebrene2021@gmail.com
thanks