您好,欢迎光临本网站![请登录][注册会员]  
文件名称: 凸优化工具箱
  所属分类: 其它
  开发工具:
  文件大小: 6mb
  下载次数: 0
  上传时间: 2016-01-18
  提 供 者: qq_32******
 详细说明: % Boyd & Vandenberghe "Convex Optimization" % Almir Mutapcic - 01/30/06 % Updated to use GP mode 02/08/06 % (a figure is generated) % % We have a segmented cantilever beam with N segments. Each segment % has a unit length and variable width and height (rectangular profile). % The goal is minimize the total volume of the beam, over all segment % widths w_i and heights h_i, subject to constraints on aspect ratios, % maximum allowable stress in the material, vertical deflection y, etc. % % The problem can be posed as a geometric program (posynomial form) % minimize sum( w_i* h_i) % s.t. w_min <= w_i <= w_max, for all i = 1,...,N % h_min <= h_i <= h_max % S_min <= h_i/w_i <= S_max % 6*i*F/(w_i*h_i^2) <= sigma_max % 6*F/(E*w_i*h_i^3) == d_i % (2*i - 1)*d_i + v_(i+1) <= v_i % (i - 1/3)*d_i + v_(i+1) + y_(i+1) <= y_i % y_1 <= y_max % % with variables w_i, h_i, d_i, (i = 1,...,N) and v_i, y_i (i = 1,...,N+1). % (Consult the book for other definitions and a recursive formulation of % this problem.) % optimization variables N = 8; % constants wmin = .1; wmax = 100; hmin = .1; hmax = 6; Smin = 1/5; Smax = 5; sigma_max = 1; ymax = 10; E = 1; F = 1; cvx_begin gp % optimization variables variables w(N) h(N) v(N+1) y(N+1); % objective is the total volume of the beam % obj = sum of (widths*heights*lengths) over each section % (recall that the length of each segment is set to be 1) minimize( w'*h ) subject to % non-recursive formulation d = 6*F*ones(N,1)./(E*ones(N,1).*w.*h.^3); for i = 1:N (2*i-1)*d(i) + v(i+1) <= v(i); (i-1/3)*d(i) + v(i+1) + y(i+1) <= y(i); end % constraint set wmin <= w; w <= wmax; hmin <= h; h <= hmax; Smin <= h./w; h./w <= Smax; 6*F*[1:N]'./(w.*(h.^2)) <= sigma_max; y(1) <= ymax; cvx_end % display results disp('The optimal widths and heights are: '); w, h fprintf(1,'The optimal minimum volume of the beam is %3.4f.\n', sum(w.*h)) % plot the 3D model of the optimal cantilever beam figure, clf cantilever_beam_plot([h; w]) Successive approximation method to be employed. SDPT3 will be called several times to refine the solution. Original size: 200 variables, 65 equality constraints For improved efficiency, SDPT3 is solving the dual problem. Approximation size: 585 variables, 305 equality constraints ----------------------------------------------------------------- Target Conic Solver Precision Error Status --------------------------- 1.221e-04 1.958e+00 Solved 1.221e-04 4.438e-02 Solved 1.221e-04 0.000e+00 Solved 1.490e-08 4.364e-08 Inaccurate/Solved 1.490e-08 0.000e+00 Inaccurate/Solved ----------------------------------------------------------------- Status: Inaccurate/Solved Optimal value (cvx_optval): +42.3966 The optimal widths and heights are: w = 0.6214 0.7830 0.9060 1.0124 1.1004 1.1762 1.2000 1.3333 h = 3.1072 3.9149 4.5298 5.0620 5.5019 5.8811 6.0000 6.0000 The optimal minimum volume of the beam is 42.3966. ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: 凸优化
 输入关键字,在本站1000多万海量源码库中尽情搜索: