文中代码运行出错,代码有问题跑不了,怎么改

时间: 2024-12-20 13:28:36 浏览: 4
文中代码在调用 `pso` 函数时遇到了错误。具体问题是 `objective_function` 返回了一个列表 `[total_cost, total_carbon]`,而 `pso` 函数期望的是一个标量值。我们需要将目标函数改为返回单个值,同时调整优化目标以平衡成本和碳排放。 以下是修改后的代码: ```python import numpy as np import pandas as pd from pyswarm import pso from math import radians, sin, cos, sqrt, atan2 # 计算两点之间的距离(Haversine公式) def haversine(lat1, lon1, lat2, lon2): R = 6371 # 地球半径,单位为公里 lat1, lon1, lat2, lon2 = map(radians, [lat1, lon1, lat2, lon2]) dlat = lat2 - lon1 a = sin(dlat / 2) ** 2 + cos(lat1) * cos(lat2) * sin(dlon / 2) ** 2 c = 2 * atan2(sqrt(a), sqrt(1 - a)) distance = R * c return distance # 读取数据 waste_data = { "name": ["石桥镇", "百节镇", "万家镇", "南岳镇", "大树镇", "景市镇", "平滩镇", "赵家镇", "双庙镇", "渡市镇", "罐子镇", "管村镇", "大堰镇", "赵固镇", "石梯镇", "桥湾镇", "堡子镇"], "latitude": [31.298319, 31.023069, 30.956475, 31.215063, 30.903638, 31.012362, 30.933431, 30.962931, 30.984120, 31.059865, 31.135825, 31.182932, 31.236690, 31.240285, 31.228216, 31.261140, 31.344459], "longitude": [107.118101, 107.454102, 107.623465, 107.502044, 107.633019, 107.552492, 107.512259, 107.416361, 107.367131, 107.277676, 107.301602, 107.311350, 107.332680, 107.280691, 107.160852, 107.202620, 107.303139], "amount": [2.86, 0.87, 3.71, 1.52, 3.39, 0.97, 1.55, 1.24, 1.61, 1.62, 1.81, 2.35, 0.93, 0.75, 3.64, 3.18, 1.68] } recycling_center_data = { "name": ["分类回收节点 1", "分类回收节点 2", "分类回收节点 3", "分类回收节点 4", "分类回收节点 5", "分类回收节点 6", "分类回收节点 7", "分类回收节点 8", "分类回收节点 9", "分类回收节点 10"], "latitude": [31.469126, 31.374130, 31.182932, 31.023069, 31.559861, 31.415139, 31.355846, 31.477050, 31.084636, 31.030836], "longitude": [107.381715, 107.520675, 107.311350, 107.454102, 107.662229, 107.792071, 107.934038, 107.862990, 107.865317, 107.950456], "fixed_cost": [150000, 160000, 155000, 160000, 156000, 170000, 165000, 175000, 180000, 160000], "variable_cost": [65, 60, 62, 65, 70, 68, 65, 68, 78, 60], "carbon_emission": [7.4, 6.8, 6.5, 6.6, 7.1, 6.5, 6.8, 7.2, 7.9, 6.1], "recovery_rate": [0.87, 0.88, 0.85, 0.84, 0.88, 0.82, 0.83, 0.84, 0.82, 0.86] } manufacturing_center_data = { "name": ["再制造中心 1", "再制造中心 2", "再制造中心 3", "再制造中心 4", "再制造中心 5", "再制造中心 6", "再制造中心 7", "再制造中心 8", "再制造中心 9", "再制造中心 10"], "latitude": [30.759173, 30.881567, 31.166667, 31.511537, 31.189239, 31.583331, 31.773757, 31.88538, 32.111504, 31.705033], "longitude": [107.095849, 107.393755, 107.293659, 107.561008, 107.954275, 108.033926, 107.750011, 107.93333, 108.045688, 108.206486], "fixed_cost": [300000, 305000, 310000, 320000, 315000, 330000, 320000, 310000, 325000, 330000], "variable_cost": [200, 210, 205, 210, 215, 220, 215, 225, 230, 210], "carbon_emission": [102, 108, 98, 96, 102, 103, 106, 110, 98, 104], "recovery_rate": [0.87, 0.86, 0.88, 0.85, 0.89, 0.83, 0.85, 0.84, 0.86, 0.87] } landfill_data = { "name": ["填埋场 1", "填埋场 4", "填埋场 7"], "latitude": [31.3623822568, 31.583337, 30.741412], "longitude": [107.063886246, 107.92318, 107.364349], "variable_cost": [54, 55, 58], "carbon_emission": [6.23, 6.21, 6.32] } # 将数据转换为 DataFrame df_waste = pd.DataFrame(waste_data) df_recycling_centers = pd.DataFrame(recycling_center_data) df_manufacturing_centers = pd.DataFrame(manufacturing_center_data) df_landfills = pd.DataFrame(landfill_data) # 计算所有节点之间的距离矩阵 dist_matrix = np.zeros((len(df_waste) + len(df_recycling_centers) + len(df_manufacturing_centers) + len(df_landfills), len(df_waste) + len(df_recycling_centers) + len(df_manufacturing_centers) + len(df_landfills))) for i in range(len(df_waste)): for j in range(i + 1, len(df_waste)): dist_matrix[i, j] = haversine(df_waste.iloc[i]['latitude'], df_waste.iloc[i]['longitude'], df_waste.iloc[j]['latitude'], df_waste.iloc[j]['longitude']) dist_matrix[j, i] = dist_matrix[i, j] for i in range(len(df_waste)): for j in range(len(df_waste), len(df_waste) + len(df_recycling_centers)): dist_matrix[i, j] = haversine(df_waste.iloc[i]['latitude'], df_waste.iloc[i]['longitude'], df_recycling_centers.iloc[j - len(df_waste)]['latitude'], df_recycling_centers.iloc[j - len(df_waste)]['longitude']) for i in range(len(df_waste)): for j in range(len(df_waste) + len(df_recycling_centers), len(df_waste) + len(df_recycling_centers) + len(df_manufacturing_centers)): dist_matrix[i, j] = haversine(df_waste.iloc[i]['latitude'], df_waste.iloc[i]['longitude'], df_manufacturing_centers.iloc[j - (len(df_waste) + len(df_recycling_centers))][ 'latitude'], df_manufacturing_centers.iloc[j - (len(df_waste) + len(df_recycling_centers))][ 'longitude']) for i in range(len(df_waste)): for j in range(len(df_waste) + len(df_recycling_centers) + len(df_manufacturing_centers), len(df_waste) + len(df_recycling_centers) + len(df_manufacturing_centers) + len(df_landfills)): dist_matrix[i, j] = haversine(df_waste.iloc[i]['latitude'], df_waste.iloc[i]['longitude'], df_landfills.iloc[j - (len(df_waste) + len(df_recycling_centers) + len(df_manufacturing_centers))]['latitude'], df_landfills.iloc[j - (len(df_waste) + len(df_recycling_centers) + len(df_manufacturing_centers))]['longitude']) # 定义目标函数 def objective_function(x): n_waste_nodes = len(df_waste) n_recycling_nodes = len(df_recycling_centers) n_manufacturing_nodes = len(df_manufacturing_centers) n_landfill_nodes = len(df_landfills) recycling_nodes = x[:n_recycling_nodes].astype(int) manufacturing_nodes = x[n_recycling_nodes:n_recycling_nodes + n_manufacturing_nodes].astype(int) total_cost = 0 total_carbon = 0 for i in range(n_waste_nodes): waste_amount = df_waste.iloc[i]['amount'] if sum(recycling_nodes) > 0: nearest_recycling_node = np.argmin([dist_matrix[i, j] for j in range(n_waste_nodes, n_waste_nodes + n_recycling_nodes) if recycling_nodes[j - n_waste_nodes]]) recycling_node_index = nearest_recycling_node + n_waste_nodes recycling_fixed_cost = df_recycling_centers.iloc[nearest_recycling_node]['fixed_cost'] recycling_variable_cost = df_recycling_centers.iloc[nearest_recycling_node]['variable_cost'] recycling_carbon_emission = df_recycling_centers.iloc[nearest_recycling_node]['carbon_emission'] transport_distance_to_recycling = dist_matrix[i, recycling_node_index] transport_cost_to_recycling = transport_distance_to_recycling * waste_amount * 5.5 transport_carbon_to_recycling = transport_distance_to_recycling * waste_amount * 0.35 total_cost += recycling_fixed_cost + recycling_variable_cost * waste_amount + transport_cost_to_recycling total_carbon += recycling_carbon_emission * waste_amount + transport_carbon_to_recycling if sum(manufacturing_nodes) > 0: nearest_manufacturing_node = np.argmin( [dist_matrix[recycling_node_index, j] for j in range(n_waste_nodes + n_recycling_nodes, n_waste_nodes + n_recycling_nodes + n_manufacturing_nodes) if manufacturing_nodes[j - (n_waste_nodes + n_recycling_nodes)]]) manufacturing_node_index = nearest_manufacturing_node + n_waste_nodes + n_recycling_nodes manufacturing_fixed_cost = df_manufacturing_centers.iloc[nearest_manufacturing_node]['fixed_cost'] manufacturing_variable_cost = df_manufacturing_centers.iloc[nearest_manufacturing_node]['variable_cost'] manufacturing_carbon_emission = df_manufacturing_centers.iloc[nearest_manufacturing_node]['carbon_emission'] transport_distance_to_manufacturing = dist_matrix[recycling_node_index, manufacturing_node_index] transport_cost_to_manufacturing = transport_distance_to_manufacturing * waste_amount * 5.5 transport_carbon_to_manufacturing = transport_distance_to_manufacturing * waste_amount * 0.35 total_cost += manufacturing_fixed_cost + manufacturing_variable_cost * waste_amount + transport_cost_to_manufacturing total_carbon += manufacturing_carbon_emission * waste_amount + transport_carbon_to_manufacturing else: nearest_landfill_node = np.argmin( [dist_matrix[recycling_node_index, j] for j in range(n_waste_nodes + n_recycling_nodes + n_manufacturing_nodes, n_waste_nodes + n_recycling_nodes + n_manufacturing_nodes + n_landfill_nodes)]) landfill_node_index = nearest_landfill_node + n_waste_nodes + n_recycling_nodes + n_manufacturing_nodes landfill_variable_cost = df_landfills.iloc[nearest_landfill_node]['variable_cost'] landfill_carbon_emission = df_landfills.iloc[nearest_landfill_node]['carbon_emission'] transport_distance_to_landfill = dist_matrix[recycling_node_index, landfill_node_index] transport_cost_to_landfill = transport_distance_to_landfill * waste_amount * 5.5 transport_carbon_to_landfill = transport_distance_to_landfill * waste_amount * 0.35 total_cost += landfill_variable_cost * waste_amount + transport_cost_to_landfill total_carbon += landfill_carbon_emission * waste_amount + transport_carbon_to_landfill else: nearest_landfill_node = np.argmin( [dist_matrix[i, j] for j in range(n_waste_nodes + n_recycling_nodes + n_manufacturing_nodes, n_waste_nodes + n_recycling_nodes + n_manufacturing_nodes + n_landfill_nodes)]) landfill_node_index = nearest_landfill_node + n_waste_nodes + n_recycling_nodes + n_manufacturing_nodes landfill_variable_cost = df_landfills.iloc[nearest_landfill_node]['variable_cost'] landfill_carbon_emission = df_landfills.iloc[nearest_landfill_node]['carbon_emission'] transport_distance_to_landfill = dist_matrix[i, landfill_node_index] transport_cost_to_landfill = transport_distance_to_landfill * waste_amount * 5.5 transport_carbon_to_landfill = transport_distance_to_landfill * waste_amount * 0.35 total_cost += landfill_variable_cost * waste_amount + transport_cost_to_landfill total_carbon += landfill_carbon_emission * waste_amount + transport_carbon_to_landfill # 平衡总成本和总碳排放 weighted_objective = total_cost + 0.1 * total_carbon return weighted_objective # 定义边界 lb = [0] * (len(df_recycling_centers) + len(df_manufacturing_centers)) ub = [1] * (len(df_recycling centers) + len(df_manufacturing_centers)) # 运行 PSO opt = pso(objective_function, lb, ub, swarmsize=100, maxiter=100, minstep=1e-8, minfunc=1e-8) print("Optimal solution found:") print(f"Total cost: {opt[0]}") print(f"Recycling nodes selected: {[int(round(x)) for x in opt[1][:len(df_recycling_centers)]]}") print(f"Manufacturing nodes selected: {[int(round(x))
阅读全文

相关推荐

大家在看

recommend-type

寻找相似用户欧几里得-协作型过滤算法及其在推荐系统的应用

2.寻找相似用户(欧几里得) 依次获得p5与p1、p2、p3、p4之间的相关度
recommend-type

码垛机器人说明书

对于随机货盘来说,码垛机器人是唯一的选择。尽管如此,机器人装载也面临比较多的问题,如果要以较高的速度进行生产,将更加困难重重。一个处理随机装载的机器人码垛机需要特殊的软件,通过软件,机器人码垛机与生产线的其他部分相连接,这是个巨大的进步。
recommend-type

论文研究-一种面向HDFS中海量小文件的存取优化方法.pdf

为了解决HDFS(Hadoop distributed file system)在存储海量小文件时遇到的NameNode内存瓶颈等问题,提高HDFS处理海量小文件的效率,提出一种基于小文件合并与预取的存取优化方案。首先通过分析大量小文件历史访问日志,得到小文件之间的关联关系,然后根据文件相关性将相关联的小文件合并成大文件后再存储到HDFS。从HDFS中读取数据时,根据文件之间的相关性,对接下来用户最有可能访问的文件进行预取,减少了客户端对NameNode节点的访问次数,提高了文件命中率和处理速度。实验结果证明,该方法有效提升了Hadoop对小文件的存取效率,降低了NameNode节点的内存占用率。
recommend-type

STM8L051F3P6使用手册(中文).zip

STM8L051
recommend-type

昆仑通态脚本驱动开发工具使用指导手册

昆仑通态脚本驱动开发工具使用指导手册,昆仑通态的文档、

最新推荐

recommend-type

微机原理试题及答案 试题一套

- 解释器:在运行时逐行解释源代码,不生成可独立执行的目标代码。 - 编译器:将源代码一次性转换为可独立执行的目标代码,然后运行目标代码。 4. **翻译过程**: - 编译:高级语言到低级语言(通常是机器语言)...
recommend-type

编译原理答案编译原理答案

例如,在PL/0程序的执行过程中,当程序运行到赋值语句`b:=10`时,运行栈可能会有如下布局:栈顶指针T指向最新分配的空间,最新活动记录基地址指针B指向当前活动记录的开始位置,动态链指针DL用于连接递归调用的记录...
recommend-type

基于java+springboot+mysql+微信小程序的流浪动物救助小程序 源码+数据库+论文(高分毕业设计).zip

项目已获导师指导并通过的高分毕业设计项目,可作为课程设计和期末大作业,下载即用无需修改,项目完整确保可以运行。 包含:项目源码、数据库脚本、软件工具等,该项目可以作为毕设、课程设计使用,前后端代码都在里面。 该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值。 项目都经过严格调试,确保可以运行!可以放心下载 技术组成 语言:java 开发环境:idea、微信开发者工具 数据库:MySql5.7以上 部署环境:maven 数据库工具:navicat
recommend-type

基于springboot的体质测试数据分析及可视化设计源码(java毕业设计完整源码+LW).zip

项目均经过测试,可正常运行! 环境说明: 开发语言:java JDK版本:jdk1.8 框架:springboot 数据库:mysql 5.7/8 数据库工具:navicat 开发软件:eclipse/idea
recommend-type

WildFly 8.x中Apache Camel结合REST和Swagger的演示

资源摘要信息:"CamelEE7RestSwagger:Camel on EE 7 with REST and Swagger Demo" 在深入分析这个资源之前,我们需要先了解几个关键的技术组件,它们是Apache Camel、WildFly、Java DSL、REST服务和Swagger。下面是这些知识点的详细解析: 1. Apache Camel框架: Apache Camel是一个开源的集成框架,它允许开发者采用企业集成模式(Enterprise Integration Patterns,EIP)来实现不同的系统、应用程序和语言之间的无缝集成。Camel基于路由和转换机制,提供了各种组件以支持不同类型的传输和协议,包括HTTP、JMS、TCP/IP等。 2. WildFly应用服务器: WildFly(以前称为JBoss AS)是一款开源的Java应用服务器,由Red Hat开发。它支持最新的Java EE(企业版Java)规范,是Java企业应用开发中的关键组件之一。WildFly提供了一个全面的Java EE平台,用于部署和管理企业级应用程序。 3. Java DSL(领域特定语言): Java DSL是一种专门针对特定领域设计的语言,它是用Java编写的小型语言,可以在Camel中用来定义路由规则。DSL可以提供更简单、更直观的语法来表达复杂的集成逻辑,它使开发者能够以一种更接近业务逻辑的方式来编写集成代码。 4. REST服务: REST(Representational State Transfer)是一种软件架构风格,用于网络上客户端和服务器之间的通信。在RESTful架构中,网络上的每个资源都被唯一标识,并且可以使用标准的HTTP方法(如GET、POST、PUT、DELETE等)进行操作。RESTful服务因其轻量级、易于理解和使用的特性,已经成为Web服务设计的主流风格。 5. Swagger: Swagger是一个开源的框架,它提供了一种标准的方式来设计、构建、记录和使用RESTful Web服务。Swagger允许开发者描述API的结构,这样就可以自动生成文档、客户端库和服务器存根。通过Swagger,可以清晰地了解API提供的功能和如何使用这些API,从而提高API的可用性和开发效率。 结合以上知识点,CamelEE7RestSwagger这个资源演示了如何在WildFly应用服务器上使用Apache Camel创建RESTful服务,并通过Swagger来记录和展示API信息。整个过程涉及以下几个技术步骤: - 首先,需要在WildFly上设置和配置Camel环境,确保Camel能够运行并且可以作为路由引擎来使用。 - 其次,通过Java DSL编写Camel路由,定义如何处理来自客户端的HTTP请求,并根据请求的不同执行相应的业务逻辑。 - 接下来,使用Swagger来记录和描述创建的REST API。这包括定义API的路径、支持的操作、请求参数和响应格式等。 - 最后,通过Swagger提供的工具生成API文档和客户端代码,以及服务器端的存根代码,从而使得开发者可以更加便捷地理解和使用这些RESTful服务。 这个资源的实践演示对于想要学习如何在Java EE平台上使用Camel集成框架,并且希望提供和记录REST服务的开发者来说是非常有价值的。通过这种方式,开发者可以更加快速和简单地创建和管理Web服务,同时也增强了API的可访问性和可维护性。
recommend-type

管理建模和仿真的文件

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

【声子晶体模拟全能指南】:20年经验技术大佬带你从入门到精通

![【声子晶体模拟全能指南】:20年经验技术大佬带你从入门到精通](https://docs.lammps.org/_images/lammps-gui-main.png) # 摘要 声子晶体作为一种具有周期性结构的材料,在声学隐身、微波和红外领域具有广泛的应用潜力。本文从基础理论出发,深入探讨了声子晶体的概念、物理模型和声子带结构的理论解析,同时介绍了声子晶体的数值模拟方法,包括有限元方法(FEM)、离散元方法(DEM)和分子动力学(MD)。本文还提供了一套完整的声子晶体模拟实践指南,涵盖了模拟前的准备工作、详细的模拟步骤以及结果验证和案例分析。此外,文章探讨了声子晶体模拟的高级技巧和拓展
recommend-type

2024-07-27怎么用python转换成农历日期

在Python中,可以使用`lunarcalendar`库来将公历日期转换为农历日期。首先,你需要安装这个库,可以通过pip命令进行安装: ```bash pip install lunarcalendar ``` 安装完成后,你可以使用以下代码将公历日期转换为农历日期: ```python from lunarcalendar import Converter, Solar, Lunar, DateNotExist # 创建一个公历日期对象 solar_date = Solar(2024, 7, 27) # 将公历日期转换为农历日期 try: lunar_date = Co
recommend-type

FDFS客户端Python库1.2.6版本发布

资源摘要信息:"FastDFS是一个开源的轻量级分布式文件系统,它对文件进行管理,功能包括文件存储、文件同步、文件访问等,适用于大规模文件存储和高并发访问场景。FastDFS为互联网应用量身定制,充分考虑了冗余备份、负载均衡、线性扩容等机制,保证系统的高可用性和扩展性。 FastDFS 架构包含两个主要的角色:Tracker Server 和 Storage Server。Tracker Server 作用是负载均衡和调度,它接受客户端的请求,为客户端提供文件访问的路径。Storage Server 作用是文件存储,一个 Storage Server 中可以有多个存储路径,文件可以存储在不同的路径上。FastDFS 通过 Tracker Server 和 Storage Server 的配合,可以完成文件上传、下载、删除等操作。 Python 客户端库 fdfs-client-py 是为了解决 FastDFS 文件系统在 Python 环境下的使用。fdfs-client-py 使用了 Thrift 协议,提供了文件上传、下载、删除、查询等接口,使得开发者可以更容易地利用 FastDFS 文件系统进行开发。fdfs-client-py 通常作为 Python 应用程序的一个依赖包进行安装。 针对提供的压缩包文件名 fdfs-client-py-master,这很可能是一个开源项目库的名称。根据文件名和标签“fdfs”,我们可以推测该压缩包包含的是 FastDFS 的 Python 客户端库的源代码文件。这些文件可以用于构建、修改以及扩展 fdfs-client-py 功能以满足特定需求。 由于“标题”和“描述”均与“fdfs-client-py-master1.2.6.zip”有关,没有提供其它具体的信息,因此无法从标题和描述中提取更多的知识点。而压缩包文件名称列表中只有一个文件“fdfs-client-py-master”,这表明我们目前讨论的资源摘要信息是基于对 FastDFS 的 Python 客户端库的一般性了解,而非基于具体文件内容的分析。 根据标签“fdfs”,我们可以深入探讨 FastDFS 相关的概念和技术细节,例如: - FastDFS 的分布式架构设计 - 文件上传下载机制 - 文件同步机制 - 元数据管理 - Tracker Server 的工作原理 - Storage Server 的工作原理 - 容错和数据恢复机制 - 系统的扩展性和弹性伸缩 在实际使用中,开发者可以通过 fdfs-client-py 库来与 FastDFS 文件系统进行交互,利用其提供的 API 接口实现文件的存储、管理等功能,从而开发出高效、可靠的文件处理应用。开发者可以根据项目的实际需求,选择合适的 FastDFS 版本,并根据官方文档进行安装、配置及优化,确保系统稳定运行。 总的来说,fdfs-client-py 是 FastDFS 文件系统与 Python 应用之间的一座桥梁,它使得开发者能够更加方便地将 FastDFS 集成到基于 Python 开发的应用中,发挥出 FastDFS 在文件管理方面的优势。"
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。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依