期刊文献+
共找到460篇文章
< 1 2 23 >
每页显示 20 50 100
Automated pattern-directed refactoring for complex conditional statements
1
作者 刘伟 胡志刚 +1 位作者 刘宏韬 杨柳 《Journal of Central South University》 SCIE EI CAS 2014年第5期1935-1945,共11页
Complex conditional statement is one of the bad code smells, which affects the quality of the code and design of software. In the proposed approach, two commonly-used design patterns for handling complex conditional s... Complex conditional statement is one of the bad code smells, which affects the quality of the code and design of software. In the proposed approach, two commonly-used design patterns for handling complex conditional statements are selected, and they are the factory method pattern and the strategy pattem. Two pattern-directed refactoring approaches based on the two design patterns are proposed. Each approach contains a refactoring opportunities identification algorithm and an automated refactoring algorithm. After parsing the abstract syntax tree generated from source code, the refactoring opportunities are identified effectively and automatically. Then, for candidate code, refactoring algorithms are executed automatically, which are used to simplify or remove complex conditional statements. By empirical analysis and quality assessment, the code after refactoring has better maintainability and extensibility, and the proposed approach for automated pattern-directed refactoring succeeds to reduce code size and complexity of classes. 展开更多
关键词 refactoring abstract syntax tree complex conditional statements design patterns factory method pattem strategypattem
在线阅读 下载PDF
用Refactoring来改善设计
2
作者 周警伟 罗晓沛 《计算机仿真》 CSCD 2002年第4期124-125,共2页
面向对象的技术提高了软件重用能力 ,人们经验的不断总结也不断地改善了设计方法。如何去改善我们原有的系统是一个比较复杂的课题 ,也是一个不可回避的问题。这篇论文论述了如何使用Refactoring技术来改善原有设计。
关键词 refactoring 软件开发 面向对象 软件重用 软件重构
在线阅读 下载PDF
Refactoring Software Packages via Community Detection in Complex Software Networks 被引量:4
3
作者 Wei-Feng Pan Bo Jiang Bing Li 《International Journal of Automation and computing》 EI CSCD 2013年第2期157-166,共10页
An intrinsic property of software in a real-world environment is its need to evolve, which is usually accompanied by the increase of software complexity and deterioration of software quality, making software maintenan... An intrinsic property of software in a real-world environment is its need to evolve, which is usually accompanied by the increase of software complexity and deterioration of software quality, making software maintenance a tough problem. Refactoring is regarded as an effective way to address this problem. Many refactoring approaches at the method and class level have been proposed. But the research on software refactoring at the package level is very little. This paper presents a novel approach to refactor the package structures of object oriented software. It uses software networks to represent classes and their dependencies. It proposes a constrained community detection algorithm to obtain the optimized community structures in software networks, which also correspond to the optimized package structures. And it finally provides a list of classes as refactoring candidates by comparing the optimized package structures with the real package structures. The empirical evaluation of the proposed approach has been performed in two open source Java projects, and the benefits of our approach are illustrated in comparison with the other three approaches. 展开更多
关键词 refactoring community detection complex networks PACKAGE SOFTWARE
原文传递
Application of Refactoring and Design Pattern in Land Information System Development 被引量:1
4
作者 CHEN Luyao YUE Jianwei +2 位作者 JIANG Weiguo LI Jing CHEN Yunhao 《Geo-Spatial Information Science》 2007年第4期299-302,共4页
The unceasing change problem of land information systems can be resolved through the refactoring and design pattern. To promote the implementation of design pattern and refactoring methods in developing land informati... The unceasing change problem of land information systems can be resolved through the refactoring and design pattern. To promote the implementation of design pattern and refactoring methods in developing land information systems reusing software design, applying refactoring methods to the abstract factory and decorator design patterns in land information system development is discussed. 展开更多
关键词 design pattern refactoring land information system
在线阅读 下载PDF
Source-to-Source Refactoring and Elimination of Global Variables in C Programs
5
作者 Hemaiyer Sankaranarayanan Prasad A. Kulkarni 《Journal of Software Engineering and Applications》 2013年第5期264-273,共10页
A global variable in C/C++ is one that is declared outside a function, and whose scope extends the lifetime of the entire program. Global variables cause problems for program dependability, maintainability, extensibil... A global variable in C/C++ is one that is declared outside a function, and whose scope extends the lifetime of the entire program. Global variables cause problems for program dependability, maintainability, extensibility, verification, and thread-safety. However, global variables can also make coding more convenient and improve program performance. We have found the use of global variables to remain unabated and extensive in real-world software. In this paper we present a source-to-source refactoring tool to automatically detect and localize global variables in a program. We implement a compiler based transformation to find the best location to redefine each global variable as a local. For each global, our algorithm initializes the corresponding new local variable, passes it as an argument to necessary functions, and updates the source lines that used the global to now instead use the corresponding local or argument. We also characterize the use of global variables in standard benchmark programs. We study the effect of our transformation on static program properties, such as change in the number of function arguments and program state visibility. Additionally, we quantify dynamic program features, including memory and runtime performance, before and after our localizing transformation. 展开更多
关键词 GLOBAL Variable Program refactoring COMPILER TRANSFORMATIONS
暂未订购
Identification of refactoring opportunities for source code based on class association relationships
6
作者 LIU Wei YANG Na +2 位作者 HUANG Xin-di HU Wei HU Zhi-gang 《Journal of Central South University》 SCIE EI CAS CSCD 2020年第12期3768-3778,共11页
In order to deal with the complex association relationships between classes in an object-oriented software system,a novel approach for identifying refactoring opportunities is proposed.The approach can be used to dete... In order to deal with the complex association relationships between classes in an object-oriented software system,a novel approach for identifying refactoring opportunities is proposed.The approach can be used to detect complex and duplicated many-to-many association relationships in source code,and to provide guidance for further refactoring.In the approach,source code is first transformed to an abstract syntax tree from which all data members of each class are extracted,then each class is characterized in connection with a set of association classes saving its data members.Next,classes in common associations are obtained by comparing different association classes sets in integrated analysis.Finally,on condition of pre-defined thresholds,all class sets in candidate for refactoring and their common association classes are saved and exported.This approach is tested on 4 projects.The results show that the precision is over 96%when the threshold is 3,and 100%when the threshold is 4.Meanwhile,this approach has good execution efficiency as the execution time taken for a project with more than 500 classes is less than 4 s,which also indicates that it can be applied to projects of different scales to identify their refactoring opportunities effectively. 展开更多
关键词 identification of refactoring opportunities abstract syntax tree class association relationships common association classes source code
在线阅读 下载PDF
Developing a Clang Libtooling-Based Refactoring Tool for CUDA GPU Programming
7
作者 Kian Nejadfard Janche Sang 《Journal of Software Engineering and Applications》 2024年第2期89-108,共20页
Refactoring tools, whether fully automated or semi-automated, are essential components of the software development life cycle. As software libraries and frameworks evolve over time, it’s crucial for programs utilizin... Refactoring tools, whether fully automated or semi-automated, are essential components of the software development life cycle. As software libraries and frameworks evolve over time, it’s crucial for programs utilizing them to also evolve to remain compatible with modern advancements. Take, for example, NVIDIA CUDA’s platform for general-purpose GPU programming. Embracing the more contemporary unified memory architecture offers several benefits, such as simplifying program source code, reducing bugs stemming from manual memory management between host and device memory, and optimizing memory transfer through automated memory handling. This paper describes our development of a refactoring tool based on Clang’s Libtooling to facilitate this transition automatically, thereby relieving developers from the burden and risks associated with manually refactoring large code bases. 展开更多
关键词 refactoring CUDA Unified Memory Clang Libtooling
在线阅读 下载PDF
复杂故障下静态安全分析的部分因子化修正改进方法
8
作者 王毅 李可萌 +3 位作者 曹国芳 闪鑫 陆娟娟 陈中 《电力系统自动化》 北大核心 2026年第3期167-179,共13页
新型电力系统运行方式变化愈发频繁且复杂,要求静态安全分析应用能快速处理各种复杂预想故障。复杂预想故障存在电气节点数增减等特性,现有部分因子化修正方法适用性不佳,限制了当前静态安全分析应用的性能。为此,文中提出了部分因子化... 新型电力系统运行方式变化愈发频繁且复杂,要求静态安全分析应用能快速处理各种复杂预想故障。复杂预想故障存在电气节点数增减等特性,现有部分因子化修正方法适用性不佳,限制了当前静态安全分析应用的性能。为此,文中提出了部分因子化修正改进方法。首先,分析了现有考虑线路N-1的部分因子化修正方法和加大数法在母联开关N-1(节点增加)、母线N-1(节点减少)等场景下的应用局限性。然后,针对电气节点减少场景提出了节点隔离法,通过理论推导证明了节点隔离法可在远优于加大数法数值稳定性的基础上实现方程求解误差接近机器精度。随后,针对电气节点不变及增加场景,提出了增量矩阵分解策略和两阶段法,克服了以往部分因子化修正技术仅能高效处理线路N-1等简单故障的弊端。接着,提出了部分因子化修正框架,整合了节点隔离法(节点减少)、增量矩阵分解(节点不变)和两阶段法(节点增加),将部分因子化修正技术的适用范围拓展到全类型预想故障。最后,设计了包含D5000测试环境和仿真环境的多种规模算例,验证了所提方法较D5000内置算法及传统部分因子化修正算法的优势,支撑了静态安全分析应用。 展开更多
关键词 静态安全分析 部分因子化修正 故障 节点隔离 拓扑变化
在线阅读 下载PDF
面向智慧农业的LoRa-WSN自适应拓扑重构方法
9
作者 崔运辉 《智能物联技术》 2026年第1期140-144,共5页
针对智慧农业远距离无线电-无线传感器网络(Long Range Radio-Wireless Sensor Network,LoRaWSN)传统拓扑难以适配动态场景的问题,先分析星型、树型分层、传统Mesh这3类主流拓扑的核心劣势(如星型链路适配缺失、树型容错性差、传统Mesh... 针对智慧农业远距离无线电-无线传感器网络(Long Range Radio-Wireless Sensor Network,LoRaWSN)传统拓扑难以适配动态场景的问题,先分析星型、树型分层、传统Mesh这3类主流拓扑的核心劣势(如星型链路适配缺失、树型容错性差、传统Mesh的路由与能耗缺陷),再提出基于链路质量的多跳自适应传输系统,包括链路质量指示-地形适应因子(Link Quality Indicator-terrain adaptation factor,LQI-τ)协同建模、改进粒子群优化(Particle Swarm Optimization,PSO)能耗优化、主成分分析(Principal Component Analysis,PCA)+卡尔曼滤波质量模型与数据优先级差异化保障策略。实验结果表明,所提方法可有效提升数据传输成功率与网络生存周期,降低传输延迟与节点能耗,精准满足智慧农业动态场景需求。 展开更多
关键词 智慧农业 远距离无线电-无线传感器网络(LoRa-WSN) 自适应拓扑 重构方法
在线阅读 下载PDF
A Recommendation Approach Based on Bayesian Networks for Clone Refactor
10
作者 Ye Zhai Celimuge Wu +1 位作者 Dongsheng Liu Rongrong She 《Computers, Materials & Continua》 SCIE EI 2020年第9期1999-2012,共14页
Reusing code fragments by copying and pasting them with or without minor adaptation is a common activity in software development.As a result,software systems often contain sections of code that are very similar,called... Reusing code fragments by copying and pasting them with or without minor adaptation is a common activity in software development.As a result,software systems often contain sections of code that are very similar,called code clones.Code clones are beneficial in reducing software development costs and development risks.However,recent studies have indicated some negative impacts as a result.In order to effectively manage and utilize the clones,we design an approach for recommending refactoring clones based on a Bayesian network.Firstly,clone codes are detected from the source code.Secondly,the clones that need to be refactored are identified,and the static and evolutions features are extracted to build the feature database.Finally,the Bayesian network classifier is used for training and evaluating the classification results.Based on more than 640 refactor examples of five open source software developed in C,we observe a considerable enhancement.The results show that the accuracy of the approach is larger than 90%.We believe our approach will provide a more accurate and reasonable code refactoring and maintenance advice for software developers. 展开更多
关键词 Clone code clone refactor feature extraction Bayesian network
在线阅读 下载PDF
基于可重构电池的储能安全系统设计与机制分析
11
作者 张路霞 《储能科学与技术》 北大核心 2025年第6期2380-2382,共3页
电化学储能技术的快速发展带来了能源变革,但是储能系统的安全问题也在日益凸显,常规电池组的短板效应是储能系统安全问题的核心。可重构电池的出现可以有效解决传统储能系统安全性问题,对此针对以可重构电池为主体的储能安全系统设计... 电化学储能技术的快速发展带来了能源变革,但是储能系统的安全问题也在日益凸显,常规电池组的短板效应是储能系统安全问题的核心。可重构电池的出现可以有效解决传统储能系统安全性问题,对此针对以可重构电池为主体的储能安全系统设计理念和相应机制展开研究。文章首先阐述了可重构电池的内在应用优势以及相关产业技术研究进展,随后详细阐述了储能安全系统的机制优化。包括安全能量数字化思想和动态重组等,最后分析了储能系统故障诊断流程,进一步保证储能系统的安全性。事实证明,动态可重构电池技术可以极大地提高电池储能系统的安全性和能量效率,也为后续大规模长寿命低成本电池和储能系统的设计提供了全新的路径。 展开更多
关键词 重构 储能安全 系统设计 电池簇
在线阅读 下载PDF
基于PF-Net的3D点云模型部分缺失重构研究
12
作者 李政林 王健 +3 位作者 方志杰 马媛 时斌杰 范晴晴 《工业控制计算机》 2025年第3期22-24,27,共4页
针对3D点云模型由于遮挡、噪声等主客观因素导致部分数据信息和结构丢失的问题,提出了一种基于PF-Net的3D点云模型部分缺失重构方法,开发了一款模型缺失重构系统。基于深度学习PF-Net的网络架构,引进了Batch Normal层和Dropout层,对原... 针对3D点云模型由于遮挡、噪声等主客观因素导致部分数据信息和结构丢失的问题,提出了一种基于PF-Net的3D点云模型部分缺失重构方法,开发了一款模型缺失重构系统。基于深度学习PF-Net的网络架构,引进了Batch Normal层和Dropout层,对原有的数据集进行了批归一化处理,进一步提升了对部分缺失点云模型的重构效率和精度。选取了11个点云模型的部分缺失数据信息与结构特征进行了重构实验,实验表明:在使用相同的数据集进行训练与测试的情况下,与L-Gan和PCN方法相比,该方法的重构效率更高;在11个测试类别中,该重构方法的平均值提升了12%~27%。在处理小规模模型的部分缺失重构方面效果显著,同时提高了重构的效率和精度,具有很高的实用价值。 展开更多
关键词 3D点云 深度学习 缺失重构 重构系统
在线阅读 下载PDF
多节链式倾转旋翼飞行器构形重构与策略研究
13
作者 王续乔 杨帅 《电子测量与仪器学报》 北大核心 2025年第3期125-135,共11页
多节链式倾转旋翼飞行器具有多样的本体构形形态、丰富的组合变换序列以及非唯一的构形达成解集等特点。为使飞行器在应对不同任务条件时能够获得优越的飞行性能与任务达成的重构方案,进而提高其变体执行效率和任务适应性,本文研究了多... 多节链式倾转旋翼飞行器具有多样的本体构形形态、丰富的组合变换序列以及非唯一的构形达成解集等特点。为使飞行器在应对不同任务条件时能够获得优越的飞行性能与任务达成的重构方案,进而提高其变体执行效率和任务适应性,本文研究了多节链式倾转旋翼飞行器的构形重构与策略。首先,分析了该飞行器的属性,并确定了通过性、稳定性和能耗3个关键因素作为重构策略的评价指标;其次,通过层次分析法(AHP)确定了各指标的权重,并基于加权平均法建立了重构决策方法;最后,通过实验验证了重构策略的有效性和科学性,结果表明该重构策略将综合评分平均提高了26.87%,有效改善了飞行器的性能,特别是在通过性和稳定性方面。研究结果表明,所提出的重构策略不仅提升了飞行器在复杂环境中的自适应能力,还为未来无人机技术的发展提供了重要的理论基础和实践指导。 展开更多
关键词 变体飞行器 构形重构策略 评价指标 加权平均 自适应能力
原文传递
重构与优化:后疫情时代体育公园文化生态价值研究
14
作者 郑霞 吴晓艳 蔡福键 《浙江体育科学》 2025年第1期19-26,33,共9页
在后疫情时代的背景下,随着人们健身需求的显著增长,体育公园作为核心的文化生态空间获得了新的认知与重视。本研究运用文化生态学理论,深入剖析了体育公园的文化结构要素,并基于后疫情时期其他文化形态的冲击,揭示了体育公园文化生态... 在后疫情时代的背景下,随着人们健身需求的显著增长,体育公园作为核心的文化生态空间获得了新的认知与重视。本研究运用文化生态学理论,深入剖析了体育公园的文化结构要素,并基于后疫情时期其他文化形态的冲击,揭示了体育公园文化生态所面临的挑战。研究认为,后疫情时代体育公园的文化生态需进行内容、结构及发展方向的全面革新,并在此基础上提出体育公园文化生态发展的优化路径:一是促进“个人参与—社会组织—文化氛围”的深度融合;二是建立“政府引领—市场参与—多元主体”的运行机制;三是构建“政府—行业—基层”的创新互动治理模式;四是实现“体育公园—资源再生产”的可持续良性循环。本研究从系统论的动态性和整体性视角出发,为后疫情时代体育公园的文化生态可持续发展提供了理论支撑和实践路径。 展开更多
关键词 体育公园 后疫情时代 文化结构要素 重构与优化
在线阅读 下载PDF
桥梁冲刷智能分析理论体系与技术路径
15
作者 熊文 陈钊 蔡春声 《中国公路学报》 北大核心 2025年第12期323-337,共15页
冲刷是桥梁水毁失效的重要原因之一。然而,传统冲刷分析理论虽然在数值模拟、湍流唯象等方面有新的进展,但是仍不能妥善兼顾计算精度和计算效率,难以高效准确计算冲刷平衡深度和空间形态,制约了桥梁水下安全设计与运维技术的发展。一方... 冲刷是桥梁水毁失效的重要原因之一。然而,传统冲刷分析理论虽然在数值模拟、湍流唯象等方面有新的进展,但是仍不能妥善兼顾计算精度和计算效率,难以高效准确计算冲刷平衡深度和空间形态,制约了桥梁水下安全设计与运维技术的发展。一方面,主流的平衡冲刷深度计算公式往往过于保守,与实桥测量相差较大;另一方面,经典的单相流仿真方法与水槽结果在形态和深度上仍存在不小差异,而可以更准确描述泥沙运输的两相流模型计算成本高昂。从冲刷计算公式优化、单相流和双相流智能仿真3个角度出发,通过多源数据、多维领域知识和先进人工智能算法的协同作用,提出了一套桥梁冲刷智能分析理论体系与技术路径。在相关智能化分析案例中,该理论体系与技术路径无论从计算精度、效率还是安全性、泛化能力等关键维度上,均展现出优于传统主流经验公式与仿真方法的显著优势,有效缓解了传统冲刷计算中精度与效率难以兼顾的矛盾,不仅为高精度、高效率冲刷评估提供了可行解决方案,也为桥梁全寿命周期设计与防灾减灾提供了技术支撑。 展开更多
关键词 桥梁工程 桥梁冲刷 深度学习 符号回归 公式重构 智能仿真
原文传递
MySQL数据库复杂多表联合查询的优化策略及性能分析
16
作者 刘雪梅 《软件》 2025年第10期138-140,共3页
随着数据量的持续增长,MySQL数据库在处理复杂多表联合查询时面临显著的性能挑战。针对查询响应时间长、资源消耗高等瓶颈,本文围绕索引设计、执行计划优化及SQL语句重构等方面展开系统优化策略设计。通过执行计划关键字段分析,建立优... 随着数据量的持续增长,MySQL数据库在处理复杂多表联合查询时面临显著的性能挑战。针对查询响应时间长、资源消耗高等瓶颈,本文围绕索引设计、执行计划优化及SQL语句重构等方面展开系统优化策略设计。通过执行计划关键字段分析,建立优化模型,提升查询效率。实验结果显示,优化方案显著缩短了查询时间,降低了系统负载,具备良好的应用价值和推广前景。 展开更多
关键词 MYSQL 多表联合查询 执行计划 索引优化 SQL重构
在线阅读 下载PDF
联邦学习通信效率研究综述 被引量:3
17
作者 郑剑文 刘波 +1 位作者 林伟伟 谢家晨 《计算机科学》 北大核心 2025年第2期1-7,共7页
作为一种分布式机器学习范式,联邦学习(Federated Learning,FL)旨在在保护数据隐私的前提下,实现在多方数据上共同训练机器学习模型。在实际应用中,FL在每轮迭代中需要大量的通信来传输模型参数和梯度更新,从而提高通信效率,这是FL面临... 作为一种分布式机器学习范式,联邦学习(Federated Learning,FL)旨在在保护数据隐私的前提下,实现在多方数据上共同训练机器学习模型。在实际应用中,FL在每轮迭代中需要大量的通信来传输模型参数和梯度更新,从而提高通信效率,这是FL面临的一个重要挑战。文中主要介绍了FL中通信效率的重要性,并依据不同的侧重点将现有FL通信效率的研究分为客户端选择、模型压缩、网络拓扑重构以及多种技术结合等方法。在现有的FL通信效率研究的基础上,归纳并总结出通信效率在FL发展中面临的困难与挑战,探索FL通信效率未来的研究方向。 展开更多
关键词 联邦学习 通信效率 客户端选择 模型压缩 网络拓扑重构
在线阅读 下载PDF
基于PCA-GA算法的贵州省水库标准化管理因子研究 被引量:1
18
作者 倪康 古今用 申乾坤 《水利水电技术(中英文)》 北大核心 2025年第S1期569-576,共8页
依赖专家对标对表的创建工作中,存在专家在扣分区间内自由把控扣分程度的现象,针对所造成的因子重要性、所占总分比例、扣分区间一致,但其差异化不一致的问题,利用主成分分析法(PCA)以离散度作为表征指标,重构《贵州省水库标准化管理评... 依赖专家对标对表的创建工作中,存在专家在扣分区间内自由把控扣分程度的现象,针对所造成的因子重要性、所占总分比例、扣分区间一致,但其差异化不一致的问题,利用主成分分析法(PCA)以离散度作为表征指标,重构《贵州省水库标准化管理评价标准》(简写为《评价标准》),建立特征矩阵作为输入变量,利用GA遗传算法改进BP神经网络进行拟合验证。结果表明,《评价标准》因子离散程度越高,越能代表创建实际情况;GA算法通过建立解释目标与解释适应度核函数之间的映射关系,进一步提升了BP神经网络的泛化能力和精准度,改进后的GA-BP神经网络算法模型的拟合准确率达98.78%;重构后的《评价标准》拟合R2高达0.953,较重构前提升了0.107,有着更好的拟合精度。目前从因子离散度角度出发对水利工程达标创建标准解构、重组的研究相对较少,研究结论能够较好的辅助贵州省水库标准化管理创建、后续《评价标准》的修编等工作。 展开更多
关键词 水库标准化 主成分分析法 离散度 遗传算法 重构标准
在线阅读 下载PDF
基于改进YOLOv7-tiny的铝型材表面缺陷检测方法 被引量:6
19
作者 王浚银 文斌 +2 位作者 沈艳军 张俊 王子豪 《浙江大学学报(工学版)》 北大核心 2025年第3期523-534,共12页
针对铝型材表面缺陷具有种类多样、缺陷尺度差异大和小目标缺陷漏检的问题,提出改进的YOLOv7-tiny检测算法.利用残差结构、无参注意力机制(SimAM)、激活函数(FReLU)和裁剪卷积等重构空间金字塔池化模块,捕捉更多的细节信息,加强网络多... 针对铝型材表面缺陷具有种类多样、缺陷尺度差异大和小目标缺陷漏检的问题,提出改进的YOLOv7-tiny检测算法.利用残差结构、无参注意力机制(SimAM)、激活函数(FReLU)和裁剪卷积等重构空间金字塔池化模块,捕捉更多的细节信息,加强网络多尺度学习能力.优化检测层获取更多小目标特征和位置信息,提高网络多尺度缺陷检测能力.引入部分卷积替换高效层聚合网络(ELAN)中的3×3卷积建立轻量化模型,减少计算和训练负担.结合归一化Wasserstein距离(NWD)损失度量相似度,加速网络收敛并提升小目标缺陷检测能力.在天池铝型材数据集上进行测试,结果表明,改进YOLOv7-tiny算法在置信度阈值为0.25时,精确度达到95.0%,召回率达到91.8%,均值平均精度mAP@0.5达到94.5%,检测速度为45帧/s.相较于原算法,改进算法的mAP@0.5提高4.2个百分点,在脏点缺陷上的平均精度AP提高13.1个百分点;改进算法对于低分辨率图像和被干扰图像有更好的检测结果,表明其具备更好的泛化性和抗干扰能力. 展开更多
关键词 铝型材 表面缺陷 小目标检测 SPPCSPC重构 残差结构 YOLOv7-tiny 归一化Wasserstein距离(NWD)损失
在线阅读 下载PDF
基于需求管理的航空装备可靠性数字化正向研发技术研究 被引量:1
20
作者 苏多 曾照洋 +2 位作者 李娇 彭文胜 段仕轩 《航空科学技术》 2025年第8期52-62,共11页
可靠性数字化集成了现有可靠性技术以及数字孪生技术的优势,将实现可靠性技术的变革与进化,是可靠性技术发展的未来形态。本文在航空装备可靠性工作现状和问题原因分析的基础上,结合未来装备数字化研制需求,剖析了传统可靠性工作面临的... 可靠性数字化集成了现有可靠性技术以及数字孪生技术的优势,将实现可靠性技术的变革与进化,是可靠性技术发展的未来形态。本文在航空装备可靠性工作现状和问题原因分析的基础上,结合未来装备数字化研制需求,剖析了传统可靠性工作面临的问题与挑战,开展可靠性数字化工作流程研究,深入探讨了数字化研制流程下可靠性工作内涵及先决条件,可靠性数字化业务模式与研制主流程之间的并行协同和重构技术,以及装备研制过程中可靠性数字化实现技术及标准需求等方面内容,最后提出了可靠性专业数字化关键技术和解决途径,并结合未来航空装备可靠性数字化工作需求进行了总结和展望,提出了可靠性数字化亟须解决的5类关键性技术方向和解决途径方向,为提升数字化研制环境下航空装备正向研制工作流程与可靠性工作流程的协同设计迭代效率、信息传递完整性和问题反馈追溯一致性提供了支撑。 展开更多
关键词 数字化 数字孪生 航空装备 可靠性 流程重构
在线阅读 下载PDF
上一页 1 2 23 下一页 到第
使用帮助 返回顶部