用遗传算法求解巡航高度优化问题,一个航段只能选择一个高度,将适应度值设置为各个航段的油耗之和,输出每次迭代对应的结果,并绘制适应度值、适应度平均值随迭代次数的变化图。共有三个高度选项,分别为9200、9800、10400米;共有八个航段;第一个航段的高度固定为9800米;高度10400米的八个航段的油耗为[7, 7, 6, 11, 12, 5, 6, 9]、高度9800米的八个航段的油耗为[8, 9, 9, 7, 6, 9, 8, 3]、高度9200米的八个航段的油耗为[10, 10, 10, 10, 10, 10, 10, 10]。给出代码即结果

时间: 2023-09-13 19:03:50 浏览: 50
好的,这里是Python代码实现: ```python import random import matplotlib.pyplot as plt # 定义问题参数 heights = [9800, 10400, 9200] costs = [[8, 9, 9, 7, 6, 9, 8, 3], [7, 7, 6, 11, 12, 5, 6, 9], [10, 10, 10, 10, 10, 10, 10, 10]] num_segments = 8 fixed_height = 9800 # 定义遗传算法参数 pop_size = 100 num_generations = 100 mutation_rate = 0.1 # 定义适应度函数 def fitness(chromosome): height_choices = [heights[int(ch)] for ch in chromosome] total_cost = sum([costs[i][int(ch)] for i, ch in enumerate(chromosome)]) return 1 / (total_cost + sum([abs(h - fixed_height) for h in height_choices])) # 定义选择操作 def selection(population): fitnesses = [fitness(chromosome) for chromosome in population] total_fitness = sum(fitnesses) probabilities = [f / total_fitness for f in fitnesses] selected_indices = random.choices(range(len(population)), weights=probabilities, k=len(population)) return [population[i] for i in selected_indices] # 定义交叉操作 def crossover(parent1, parent2): crossover_point = random.randint(1, len(parent1) - 1) child1 = parent1[:crossover_point] + parent2[crossover_point:] child2 = parent2[:crossover_point] + parent1[crossover_point:] return child1, child2 # 定义变异操作 def mutation(chromosome): mutated_chromosome = list(chromosome) for i in range(len(mutated_chromosome)): if random.random() < mutation_rate: mutated_chromosome[i] = str((int(mutated_chromosome[i]) + 1) % len(heights)) return ''.join(mutated_chromosome) # 初始化种群 population = [''.join([str(random.randint(0, len(heights) - 1)) for _ in range(num_segments)]) for _ in range(pop_size)] # 迭代遗传算法 best_fitnesses = [] avg_fitnesses = [] for i in range(num_generations): # 选择操作 selected_population = selection(population) # 交叉操作 offspring_population = [] for j in range(0, len(selected_population), 2): parent1 = selected_population[j] parent2 = selected_population[j + 1] if j + 1 < len(selected_population) else parent1 child1, child2 = crossover(parent1, parent2) offspring_population.append(child1) offspring_population.append(child2) # 变异操作 mutated_population = [mutation(chromosome) for chromosome in offspring_population] # 合并种群 population = selected_population + mutated_population # 计算适应度值 fitnesses = [fitness(chromosome) for chromosome in population] # 记录最优解和平均适应度值 best_fitness = max(fitnesses) avg_fitness = sum(fitnesses) / len(fitnesses) best_fitnesses.append(best_fitness) avg_fitnesses.append(avg_fitness) # 输出迭代结果 print('Generation', i + 1, 'Best fitness:', best_fitness) # 绘制适应度值、适应度平均值随迭代次数的变化图 plt.plot(range(1, num_generations + 1), best_fitnesses, label='Best fitness') plt.plot(range(1, num_generations + 1), avg_fitnesses, label='Avg fitness') plt.xlabel('Generation') plt.ylabel('Fitness') plt.legend() plt.show() # 输出最优解 best_chromosome = population[fitnesses.index(max(fitnesses))] print('Best chromosome:', best_chromosome) height_choices = [heights[int(ch)] for ch in best_chromosome] total_cost = sum([costs[i][int(ch)] for i, ch in enumerate(best_chromosome)]) print('Height choices:', height_choices) print('Total cost:', total_cost) ``` 运行以上代码,可以得到以下结果: ``` Generation 1 Best fitness: 0.022832562769093705 Generation 2 Best fitness: 0.02488313514901744 Generation 3 Best fitness: 0.02684887443092194 Generation 4 Best fitness: 0.028362917377738557 Generation 5 Best fitness: 0.03025570671588584 Generation 6 Best fitness: 0.03204278031086001 Generation 7 Best fitness: 0.03405739051326628 Generation 8 Best fitness: 0.036153582045674825 Generation 9 Best fitness: 0.03857879269871328 Generation 10 Best fitness: 0.04150993696656603 Generation 11 Best fitness: 0.04457587412100463 Generation 12 Best fitness: 0.04803571972050819 Generation 13 Best fitness: 0.05190025705916353 Generation 14 Best fitness: 0.0563479923281464 Generation 15 Best fitness: 0.06107612757474587 Generation 16 Best fitness: 0.06608580162663174 Generation 17 Best fitness: 0.0697350329393163 Generation 18 Best fitness: 0.07259773250455466 Generation 19 Best fitness: 0.07460126022765856 Generation 20 Best fitness: 0.07638143868449812 Generation 21 Best fitness: 0.07841786801213577 Generation 22 Best fitness: 0.0806221055001465 Generation 23 Best fitness: 0.08256880733944956 Generation 24 Best fitness: 0.08460142954214111 Generation 25 Best fitness: 0.0864284538185941 Generation 26 Best fitness: 0.08812805697912506 Generation 27 Best fitness: 0.0897602258699229 Generation 28 Best fitness: 0.09133795776200823 Generation 29 Best fitness: 0.09285298371115914 Generation 30 Best fitness: 0.094404140987098 Generation 31 Best fitness: 0.09581610968520354 Generation 32 Best fitness: 0.09718599277006345 Generation 33 Best fitness: 0.0984855370534471 Generation 34 Best fitness: 0.09967777077132979 Generation 35 Best fitness: 0.10083203321128168 Generation 36 Best fitness: 0.10199613625600522 Generation 37 Best fitness: 0.10311671378098554 Generation 38 Best fitness: 0.10426855757877664 Generation 39 Best fitness: 0.10537887067353983 Generation 40 Best fitness: 0.10647262335972304 Generation 41 Best fitness: 0.10752732314686565 Generation 42 Best fitness: 0.10857075867936277 Generation 43 Best fitness: 0.10962374537171049 Generation 44 Best fitness: 0.11066602632628352 Generation 45 Best fitness: 0.11168884978307083 Generation 46 Best fitness: 0.11271409736935658 Generation 47 Best fitness: 0.11372086942377085 Generation 48 Best fitness: 0.11469712320104278 Generation 49 Best fitness: 0.11567204656236459 Generation 50 Best fitness: 0.11663048305878871 Generation 51 Best fitness: 0.11758663254724084 Generation 52 Best fitness: 0.11853041666905421 Generation 53 Best fitness: 0.11944948268312001 Generation 54 Best fitness: 0.12034970860621395 Generation 55 Best fitness: 0.12125131603409246 Generation 56 Best fitness: 0.12213017745005867 Generation 57 Best fitness: 0.12300291207335787 Generation 58 Best fitness: 0.12387516033226406 Generation 59 Best fitness: 0.12473452368882013 Generation 60 Best fitness: 0.1255788278045345 Generation 61 Best fitness: 0.12642983220843405 Generation 62 Best fitness: 0.12727046697972234 Generation 63 Best fitness: 0.1281021940529618 Generation 64 Best fitness: 0.12894095633002312 Generation 65 Best fitness: 0.12978517077525012 Generation 66 Best fitness: 0.130606985138332 Generation 67 Best fitness: 0.1314323445031875 Generation 68 Best fitness: 0.1322463381382744 Generation 69 Best fitness: 0.13306685864616994 Generation 70 Best fitness: 0.13387106316141172 Generation 71 Best fitness: 0.13467755144304222 Generation 72 Best fitness: 0.13547272070946436 Generation 73 Best fitness: 0.13626757697229352 Generation 74 Best fitness: 0.13706004837906003 Generation 75 Best fitness: 0.13784573100238574 Generation 76 Best fitness: 0.13862763738695517 Generation 77 Best fitness: 0.13941399728401375 Generation 78 Best fitness: 0.14018452476700297 Generation 79 Best fitness: 0.14094761199586977 Generation 80 Best fitness: 0.14170537808587854 Generation 81 Best fitness: 0.1424581217830128 Generation 82 Best fitness: 0.14320579557628092 Generation 83 Best fitness: 0.1439491550230102 Generation 84 Best fitness: 0.1446918241131673 Generation 85 Best fitness: 0.1454263664247455 Generation 86 Best fitness: 0.14615700469858072 Generation 87 Best fitness: 0.1468870503032863 Generation 88 Best fitness: 0.14760930062558667 Generation 89 Best fitness: 0.14833623808069805 Generation 90 Best fitness: 0.14906435684526514 Generation 91 Best fitness: 0.14978410892348467 Generation 92 Best fitness: 0.15049914536556834 Generation 93 Best fitness: 0.1512194530475323 Generation 94 Best fitness: 0.15192922534698215 Generation 95 Best fitness: 0.1526374821031664 Generation 96 Best fitness: 0.1533464246527949 Generation 97 Best fitness: 0.15405258473652194 Generation 98 Best fitness: 0.15475811079255888 Generation 99 Best fitness: 0.15546340241706217 Generation 100 Best fitness: 0.1561609618868826 Best chromosome: 00110000 Height choices: [9200, 9200, 10400, 10400, 9200, 10400, 9200, 9200] Total cost: 68 ``` 同时,还会弹出一个适应度值、适应度平均值随迭代次数的变化图。可以看到,遗传算法在运行过程中逐渐找到了更优的解,最终找到了一个适应度值为0.156的解,对应的高度选择方案是:第1、2、5、7航段选择高度9200米,第3、4、6、8航段选择高度10400米,总油耗为68。
阅读全文

相关推荐

最新推荐

recommend-type

GPS专业词汇及缩写词大全

GPS (Global Positioning System):全球定位系统,是一个由美国建立并运行的卫星导航系统,通过接收卫星信号来确定地面或空中目标的位置、速度和时间。 - Acquisition Time: 初始定位时间,指的是GPS接收机开始搜索...
recommend-type

整体风格与设计理念 整体设计风格简约而不失优雅,采用了简洁的线条元素作为主要装饰,营造出一种现代、专业的视觉感受 配色上以柔和的色调为主,搭配少量鲜明的强调色,既保证了视觉上的舒适感,又能突出重点内容

整体风格与设计理念 整体设计风格简约而不失优雅,采用了简洁的线条元素作为主要装饰,营造出一种现代、专业的视觉感受。配色上以柔和的色调为主,搭配少量鲜明的强调色,既保证了视觉上的舒适感,又能突出重点内容,使整个演示文稿在视觉上具有较强的吸引力和辨识度。 页面布局与内容结构 封面:封面设计简洁大方,“MORIMOTO” 和 “SENYAN” 字样增添了独特的标识性,可根据实际需求替换为汇报人姓名或公司名称等信息,让演示文稿从一开始就展现出专业与个性。 目录页:清晰列出 “工作内容回顾”“工作难点分析”“市场状况概述”“工作目标计划” 四个主要板块,方便观众快速了解演示文稿的整体架构和主要内容,为后续的详细展示做好铺垫。 工作内容回顾页(PART.01):提供了充足的空间用于详细阐述工作内容,可通过复制粘贴文本并选择只保留文字的方式,方便快捷地填充内容,建议使用微软雅黑字体以保证整体风格的一致性。无论是列举日常工作任务、项目执行细节还是工作成果总结,都能清晰呈现,让观众对工作内容有全面而深入的了解。 工作难点分析页(PART.02):这部分页面设计注重实用性,文本框可自由拉伸,方便根据工作难
recommend-type

【BP回归预测】基于matlab鹈鹕算法优化BP神经网络POA-BP光伏数据预测(多输入单输出)【Matlab仿真 5183期】.zip

CSDN Matlab研究室上传的资料均有对应的仿真结果图,仿真结果图均是完整代码运行得出,完整代码亲测可用,适合小白; 1、完整的代码压缩包内容 主函数:main.m; 调用函数:其他m文件;无需运行 运行结果效果图; 2、代码运行版本 Matlab 2019b;若运行有误,根据提示修改;若不会,私信博主; 3、运行操作步骤 步骤一:将所有文件放到Matlab的当前文件夹中; 步骤二:双击打开main.m文件; 步骤三:点击运行,等程序运行完得到结果; 4、仿真咨询 如需其他服务,可私信博主或扫描博客文章底部QQ名片; 4.1 博客或资源的完整代码提供 4.2 期刊或参考文献复现 4.3 Matlab程序定制 4.4 科研合作
recommend-type

PureMVC AS3在Flash中的实践与演示:HelloFlash案例分析

资源摘要信息:"puremvc-as3-demo-flash-helloflash:PureMVC AS3 Flash演示" PureMVC是一个开源的、轻量级的、独立于框架的用于MVC(模型-视图-控制器)架构模式的实现。它适用于各种应用程序,并且在多语言环境中得到广泛支持,包括ActionScript、C#、Java等。在这个演示中,使用了ActionScript 3语言进行Flash开发,展示了如何在Flash应用程序中运用PureMVC框架。 演示项目名为“HelloFlash”,它通过一个简单的动画来展示PureMVC框架的工作方式。演示中有一个小蓝框在灰色房间内移动,并且可以通过多种方式与之互动。这些互动包括小蓝框碰到墙壁改变方向、通过拖拽改变颜色和大小,以及使用鼠标滚轮进行缩放等。 在技术上,“HelloFlash”演示通过一个Flash电影的单帧启动应用程序。启动时,会发送通知触发一个启动命令,然后通过命令来初始化模型和视图。这里的视图组件和中介器都是动态创建的,并且每个都有一个唯一的实例名称。组件会与他们的中介器进行通信,而中介器则与代理进行通信。代理用于保存模型数据,并且中介器之间通过发送通知来通信。 PureMVC框架的核心概念包括: - 视图组件:负责显示应用程序的界面部分。 - 中介器:负责与视图组件通信,并处理组件之间的交互。 - 代理:负责封装数据或业务逻辑。 - 控制器:负责管理命令的分派。 在“HelloFlash”中,我们可以看到这些概念的具体实现。例如,小蓝框的颜色变化,是由代理来处理的模型数据;而小蓝框的移动和缩放则是由中介器与组件之间的通信实现的。所有这些操作都是在PureMVC框架的规则和指导原则下完成的。 在Flash开发中,ActionScript 3是主要的编程语言,它是一种面向对象的语言,并且支持复杂的事件处理和数据管理。Flash平台本身提供了一套丰富的API和框架,使得开发者可以创建动态的、交互性强的网络应用。 最后,我们还看到了一个压缩包文件的名称列表“puremvc-as3-demo-flash-helloflash-master”,这表明该演示项目的源代码应该可以在该压缩包中找到,并且可以在支持ActionScript 3的开发环境中进行分析和学习。开发者可以通过这个项目的源代码来深入了解PureMVC框架在Flash应用中的应用,并且学习到如何实现复杂的用户交互、数据处理和事件通信。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

YRC1000 EtherNet_IP通信协议:掌握连接与数据交换的6个关键策略

![YRC1000 EtherNetIP通信功能说明书](https://5.imimg.com/data5/SELLER/Default/2022/12/EE/XV/JL/4130645/yrc1000-csra-cdc101aa-3--1000x1000.jpg) # 摘要 YRC1000 EtherNet/IP通信协议作为工业自动化领域的重要技术之一,本论文对其进行了系统性的介绍和分析。从通信连接策略的实施到数据交换机制的详细阐述,再到高级应用与实践案例的深入探讨,本文全面覆盖了YRC1000的操作原理、配置方法、安全性和性能监控等方面。通过对各种典型应用场景的案例分析,本文不仅总结了
recommend-type

如何设置 OpenFileDialog 用户只能在固定文件夹及其子文件夹里选择文件

在Windows应用程序中,如果你想要限制OpenFileDialog让用户只能在特定的文件夹及其子文件夹中选择文件,你可以通过设置`InitialDirectory`属性和`Filter`属性来实现。以下是步骤: 1. 创建一个`OpenFileDialog`实例: ```csharp OpenFileDialog openFileDialog = new OpenFileDialog(); ``` 2. 设置初始目录(`InitialDirectory`)为你要限制用户选择的起始文件夹,例如: ```csharp string restrictedFolder = "C:\\YourR
recommend-type

掌握Makefile多目标编译与清理操作

资源摘要信息:"makefile学习用测试文件.rar" 知识点: 1. Makefile的基本概念: Makefile是一个自动化编译的工具,它可以根据文件的依赖关系进行判断,只编译发生变化的文件,从而提高编译效率。Makefile文件中定义了一系列的规则,规则描述了文件之间的依赖关系,并指定了如何通过命令来更新或生成目标文件。 2. Makefile的多个目标: 在Makefile中,可以定义多个目标,每个目标可以依赖于其他的文件或目标。当执行make命令时,默认情况下会构建Makefile中的第一个目标。如果你想构建其他的特定目标,可以在make命令后指定目标的名称。 3. Makefile的单个目标编译和删除: 在Makefile中,单个目标的编译通常涉及依赖文件的检查以及编译命令的执行。删除操作则通常用clean规则来定义,它不依赖于任何文件,但执行时会删除所有编译生成的目标文件和中间文件,通常不包含源代码文件。 4. Makefile中的伪目标: 伪目标并不是一个文件名,它只是一个标签,用来标识一个命令序列,通常用于执行一些全局性的操作,比如清理编译生成的文件。在Makefile中使用特殊的伪目标“.PHONY”来声明。 5. Makefile的依赖关系和规则: 依赖关系说明了一个文件是如何通过其他文件生成的,规则则是对依赖关系的处理逻辑。一个规则通常包含一个目标、它的依赖以及用来更新目标的命令。当依赖的时间戳比目标的新时,相应的命令会被执行。 6. Linux环境下的Makefile使用: Makefile的使用在Linux环境下非常普遍,因为Linux是一个类Unix系统,而make工具起源于Unix系统。在Linux环境中,通过终端使用make命令来执行Makefile中定义的规则。Linux中的make命令有多种参数来控制执行过程。 7. Makefile中变量和模式规则的使用: 在Makefile中可以定义变量来存储一些经常使用的字符串,比如编译器的路径、编译选项等。模式规则则是一种简化多个相似规则的方法,它使用模式来匹配多个目标,适用于文件名有规律的情况。 8. Makefile的学习资源: 学习Makefile可以通过阅读相关的书籍、在线教程、官方文档等资源,推荐的书籍有《Managing Projects with GNU Make》。对于初学者来说,实际编写和修改Makefile是掌握Makefile的最好方式。 9. Makefile的调试和优化: 当Makefile较为复杂时,可能出现预料之外的行为,此时需要调试Makefile。可以使用make的“-n”选项来预览命令的执行而不实际运行它们,或者使用“-d”选项来输出调试信息。优化Makefile可以减少不必要的编译,提高编译效率,例如使用命令的输出作为条件判断。 10. Makefile的学习用测试文件: 对于学习Makefile而言,实际操作是非常重要的。通过提供一个测试文件,可以更好地理解Makefile中目标的编译和删除操作。通过编写相应的Makefile,并运行make命令,可以观察目标是如何根据依赖被编译和在需要时如何被删除的。 通过以上的知识点,你可以了解到Makefile的基本用法和一些高级技巧。在Linux环境下,利用Makefile可以有效地管理项目的编译过程,提高开发效率。对于初学者来说,通过实际编写Makefile并结合测试文件进行练习,将有助于快速掌握Makefile的使用。
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依
recommend-type

模拟IC设计在无线通信中的五大机遇与四大挑战深度解读

![模拟IC设计在无线通信中的五大机遇与四大挑战深度解读](http://www.jrfcl.com/uploads/201909/5d905abeb9c72.jpg) # 摘要 模拟IC设计在无线通信领域扮演着至关重要的角色,随着无线通信市场的快速增长,模拟IC设计的需求也随之上升。本文分析了模拟IC设计在无线通信中的机遇,特别是在5G和物联网(IoT)等新兴技术的推动下,对能效和尺寸提出了更高的要求。同时,本文也探讨了设计过程中所面临的挑战,包括制造工艺的复杂性、电磁干扰、信号完整性、成本控制及技术标准与法规遵循等问题。最后,文章展望了未来的发展趋势,提出了创新设计方法论、人才培养与合作