Borrar filtros
Borrar filtros

How do I maximise Volume of a cylinder such that its Surface Area is less than 10 using fmincon by predicting only either radius or height but not both?

1 visualización (últimos 30 días)
Volume= pi*r*r*h
Surface Area= 2*pi*r*(h+r);
i am solving a bigger problem. this simple example will help me to solve the bigger problem. The main point is Fmincon should predict only r or h but not both. The other value has to be computed through the constraint equation. Please give me the full code including function call, objective function and constraint function. Thanks

Respuesta aceptada

Torsten
Torsten el 16 de Jul. de 2019
Editada: Torsten el 16 de Jul. de 2019
Not possible. Since r and h are interdependent, "fmincon" must be able to vary both and thus predict them simultaneously.
Of course, if we assume that maximum volume will result if we use maximum surface area, we have
10 = 2*pi*r^2 + 2*pi*r*h
and we can solve for h:
h = 5/(pi*r) - r
and insert in the volume formula
max: pi*r^2*(5/(pi*r) - r)
But for bigger problems with more constraints, this does not seem the way to go.

Más respuestas (0)

Categorías

Más información sobre Lighting, Transparency, and Shading en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by