All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Q: Write code in MATLAB to optimise the stalagmite function and find the global maxima of the function. Plot graphs for all 3 studies and f maximum vs no. of iterations. A: Optimisation: An optimization algorithm is a procedure which is executed iteratively by comparing various solutions until an optimum…
ABHITEJA PADMA
updated on 23 Sep 2020
Q: Write code in MATLAB to optimise the stalagmite function and find the global maxima of the function. Plot graphs for all 3 studies and f maximum vs no. of iterations.
A: Optimisation: An optimization algorithm is a procedure which is executed iteratively by comparing various solutions until an optimum or a satisfactory solution is found.
Example: An airfoil requires a proper lift at a different angle of attack and also needs to minimise the drag. This means that the drag value should be minimum at different angles. The process of making necessary modifications in design to give minimum drag force is known as optimisation.
There are two types of algorithms. They are:
Optimal problem formulation can be expressed by the following flow chart.
Optimisation algorithms are:
Nontraditional algorithms are of two types. Genetic algorithm and Simulated algorithm.
Genetic algorithm: It is one of the optimisation processes which is a search based optimisation technique based on principles of genetic and natural selection. They are used to find optimal or near-optimal solutions. It is frequently used to solve in research and machine learning. Below flow chart represents the process of flow chart. Genetic algorithm is proposed by Charles Darwin.
Calculation of fitness function with a fitness approach can be 3 types.
Fitness function: It takes the solution as input and produces the suitability of the solution as the output. This evaluates how close the solution is to the optimal solution of the desired problem.
Definitions:
Genetic algorithm in MATLAB: In MATLAB, to find genetic algorithm, we have an in-built tool. It is used to find the minimum value of the function.
Syntax: x = ga(fun, nvars) where x is local unconstrained minimum, fun is objective function and nvars is the no.of design variables of the function.
Other syntaxes:
Where,
Note: If are any values are not given, we can represent as [ ], which means null value.
eg: x = ga(fun,nvars, [ ],[ ],[ ], [ ],lb,ub, [ ], options)
Note: Here, we calculate 3 studies for calculating a for stalagmite function. In study 1, we find with unbounded inputs, in study 2, we find by adding bounds and in study 3, we find by adding bounds and also adding population size.
Code procedure:
Stalagmite function code:
Code for stalagmite function:
function [F] = stalagmite_fun(input)
% give input values
x = input(1);
y = input(2);
% Writing stalagmite formulas
f1 = (sin((5.1 * pi * x) + 0.5))^6;
f2 = ((sin(5.1 * pi * y) + 0.5))^6;
f3 = exp((-4 * log(2) * ((x - 0.0667)^2)/0.64));
f4 = exp((-4 * log(2) * ((y - 0.0667)^2)/0.64));
F = (-1 * f1 * f2 * f3 * f4);
end
Main code:
Code for study 1:
clear all
close all
clc
%Defining search space
x = linspace(0, 0.6, 150);
y = linspace(0, 0.6, 150);
num_cases = 50
% creating 2D mesh
[xx yy] = meshgrid(x,y);
% study 1 - statistical behaviour
tic
for i = 1 : length(xx)
for j = 1 : length(yy)
input(1) = xx(i, j);
input(2) = yy(i, j);
f(i, j) = stalagmite_fun(input);
end
end
for i = 1 : num_cases
[inputs, fopt(i)] = ga(@stalagmite_fun, 2);
xopt(i) = inputs(1);
yopt(i) = inputs(2);
end
study1_time = toc
% Plotting optimum values
figure(1)
subplot(2, 1, 1)
hold on
surfc(xx, yy, f)
shading interp
plot3(xopt, yopt, fopt, 'marker', 'o', 'markersize', 5, 'markerfacecolor', 'r')
title('unbounded inputs')
subplot(2, 1, 2)
% plotting f optimum
plot(fopt)
xlabel('Iterations')
ylabel('functions minimum')
Output for study 1: The time taken to run the loop is given as study1_time = 6.0527.
Plot for study 1:
We can observe in the plot that, values are plotted all over the plot. Every time we run this, we get different values. This is because it is random sampling. In the second plot, we can observe that iteration is of 50 times and function minimum has various points.
Code procedure for study 2:
Code for study 2:
% study 2 - statistical behaviuor - with upper and lower bounds
tic
for i = 1 : num_cases
[inputs, fopt(i)] = ga(@stalagmite_fun, 2, [], [], [], [], [0 ; 0], [1 ; 1]);
xopt(i) = inputs(1);
yopt(i) = inputs(2);
end
study2_time = toc
% Plotting optimum values
figure(2)
subplot(2, 1, 1)
hold on
surfc(xx, yy, f)
shading interp
plot3(xopt, yopt, fopt, 'marker', 'o', 'markersize', 5, 'markerfacecolor', 'r')
title('bounded inputs')
subplot(2, 1, 2)
% plotting f optimum
plot(fopt)
xlabel('Iterations')
ylabel('functions minimum')
Output for study 2: The time taken to run the loop is given as study2_time = 6.6568.
Plot for study 2:
We get a plot little clear. We observe that the function predicts the minimum point is between peaks(not everywhere). The range is also decreased. By reducing search space, we get a more clear plot of minima value.
Code procedure for study 3:
Code for study 3:
%Study 3 increasing GA iteration
options = optimoptions('ga');
options = optimoptions (options, 'PopulationSize', 400);
tic
for i = 1 : num_cases
[inputs, fopt(i)] = ga(@stalagmite_fun, 2, [], [], [], [], [0;0],[0.1;0.1], [],[],options);
xopt(i) = inputs(1);
yopt(i) = inputs(2);
end
study3_time = toc
% Plotting optimum values
figure(3)
subplot(2, 1, 1)
hold on
surfc(xx, yy, f)
shading interp
plot3(xopt, yopt, fopt, 'marker', 'o', 'markersize', 5, 'markerfacecolor', 'r')
title('bounded inputs with population size')
subplot(2, 1, 2)
% plotting f optimum
plot(fopt)
xlabel('Iterations')
ylabel('functions minimum')
Output for study 3: The time taken to run the loop is given as study3_time = 43.1270.
Plot for study 3: We can observe that only one point is visible in the plot at the peak point. This is the maximum value for stalagmite function. This is achieved by increasing the population size and giving necessary limits for the function.
Final values in the workspace:
Final fopt values:
Points to remember:
Errors and their rectification:
References:
https://skill-lync.com/knowledgebase/genetic-algorithm-explained
https://mech.iitm.ac.in/nspch52.pdf
https://www.mathworks.com/help/gads/ga.html
Conclusion:
Therefore, optimum values have been calculated for three studies and plotted each. Global maxima of stalagmite function is calculated.
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Week 11 - Final project
Aim: To Creation of CAD model considering Class A surface, Nominal thickness and Attachment strategy. Objective: 1.To Creation of CAD model considering Class A surface, Nominal thickness and Attachment strategy.2.Create thickened part using master section for reference3.Create the mounting features as per design guidelines…
20 Dec 2021 10:17 AM IST
Week 9 - Project - Master Section Development
Aim : Design B-Pillar through master section Development. Step 1 : Create tooling axis. For creating the tooling axis first we extract this 4 boundries. Took a point between this 2 lines. then draw a bisecting line between this two line by using point. again bisect the remaining two lines. and finally bisect the resultant…
20 Dec 2021 10:10 AM IST
Week 9 - Project 1 - Door Applique Design with Engineering Features
Aim:Create the door applique plastic component,create tooling axis,Heat stakes & locators by using class A surface. Create tooling axis Make a close body by using Class A surface Create adrawing for 4 way locator Then pad the $ way locator sketch. After that give the thicken command to class A surface Give…
20 Dec 2021 10:02 AM IST
Week 9 - Attachment Feature Creation - Challenge 2
Aim: To create a screw boss and dog house for the centre console coin holder by considering design rules. General Guidelines for the creation of Bosses: Draft - 0.5 degrees on walls of boss Thickness - Typically 40%* of the nominal wall at the base. Height to Diameter Ratio…
04 Oct 2021 05:53 PM IST
Related Courses
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.