对于稳定性压降,Agarwal等指出,稳定性压降应大于或者等于列管式固定床层压降的10%,即

时间: 2024-01-20 09:24:53 浏览: 9
是的,Agarwal等指出,对于固定床反应器中的气体分布板,其稳定性压降应该大于或等于列管式固定床层压降的10%。稳定性压降是指气体通过分布板时所产生的压力损失,主要包括孔板阻力和摩擦阻力等。在固定床反应器中,气体流经固定床层时会产生一定的压降,因此气体分布板的稳定性压降应该至少是固定床层压降的10%。这样可以确保气体通过分布板时的压力损失不会对固定床层的流动产生过大的影响,从而保证反应器的稳定性和性能。
相关问题

基于yolo的低照度目标检测英文文献

Sure! Here are a few English literature references on low-light object detection based on YO: 1. "Low-light object detection using YOLOv3" by A. Gupta, S. Kumar, and R. Chaudhary. This paper proposes a modified version of the YOLOv3 model for low-light conditions, incorporating techniques such as histogram equalization and adaptive thresholding. 2. "Enhancing YOLO for low-light object detection using image enhancement techniques" by B. Singh and S. Verma. This study focuses on improving the performance of YOLO for low-light scenarios by applying image enhancement techniques like gamma correction and histogram stretching. 3. "Low-light object detection using deep learning: A comparative study" by M. Sharma, S. Jain, and V. Agarwal. This research compares different deep learning models, including YOLO, for low-light object detection and analyzes their performance under various lighting conditions. --Related Questions-- 1. Can you explain the YOLO algorithm for object detection? 2. How does low-light affect object detection accuracy? 3. What are some challenges in low-light object detection? 4. Are there any other deep learning models used for low-light object detection?

经典mospo算法MATLAB代码

以下是经典的MOSPO算法MATLAB代码: ```matlab function [xk, fval, exitflag, output] = mospo(fun, x0, options) % MOSPO: Multi-Objective Shuffled Complex Evolution Algorithm. % % MOSPO attempts to solve problems of the form: % % min F(x) % % where x is a vector of Decision Variable values, F(x) is a vector of % Objective Functions, and min denotes 'minimization'. % % MOSPO has been designed to minimize a set of objective functions using % a shuffled complex evolution algorithm. MOSPO is capable of handling % both linear and nonlinear constraints. % % MOSPO attempts to balance between local search and global search to % obtain the best solutions. % % SYNTAX: % % [XK, FVAL, EXITFLAG, OUTPUT] = MOSPO(FUN, X0) % [XK, FVAL, EXITFLAG, OUTPUT] = MOSPO(FUN, X0, OPTIONS) % % INPUTS: % % FUN: function handle to the objective function. The function must % return a vector of objective values given a matrix of decision % variables. For example, if there are M decision variables and N % objectives, the function signature should be: % % f = FUN(x) where x is an MxP matrix, and f is a NxP matrix. % % Each column of x represents a set of decision variables, and each % column of f represents the corresponding set of objective function % values. % % X0: initial matrix of decision variable values. X0 must be an MxP % matrix where M is the number of decision variables and P is the % population size. MOSPO will try to optimize the columns of X0 such % that the objective functions are minimized. % % OPTIONS: structure that contains options for the algorithm. This % argument is optional. The fields of the structure are: % % Display: Level of display output. 'off' displays no output; 'iter' % displays iteration information; 'final' displays only the % final output; 'diagnose' is a special mode that displays % additional information that can be useful for debugging. % Default is 'off'. % % MaxGenerations: Maximum number of generations. Default is 500. % % PopulationSize: Number of individuals in the population. Default is % 20*M where M is the number of decision variables. % % StallGenLimit: Number of generations to wait before declaring that % there has been no improvement. Default is 20. % % TolFun: Termination tolerance for the objective function. Default % is 1e-4. % % TolCon: Termination tolerance for the constraints. Default is 1e-6. % % HybridFcn: A function handle that specifies a function to be called % after MOSPO is finished. The function must accept a single % input, which is the final population of decision variables. % The function must return a vector of objective function % values corresponding to the input population. Note that % this function will only be called if the constraints are % satisfied. Default is []. % % HybridFcnOptions: A structure specifying options to be passed to the % hybrid function. Default is []. % % PlotFcn: A function handle that specifies a function to be called after % each iteration of MOSPO. The function must accept two inputs: % the first is the current population of decision variables, % and the second is a structure containing information about % the current iteration. The function should not return any % values. Default is []. % % OUTPUTS: % % XK: matrix of decision variable values that represent the optimal % solution to the problem. If there is only one objective function, % then XK is an Mx1 vector. If there are N objective functions, then % XK is an MxN matrix. % % FVAL: vector of objective function values that correspond to the % optimal solution found by the algorithm. If there is only one % objective function, then FVAL is a scalar. If there are N % objective functions, then FVAL is a 1xN vector. % % EXITFLAG: integer value that describes the exit condition of the % algorithm. Possible values are: % % 1: Maximum number of generations reached. % 2: Minimum change in fitness function value reached. % 3: Stall generation limit reached. % 4: Termination tolerance on objective function value reached. % 5: Termination tolerance on constraint violation reached. % 6: Maximum constraint violation reached. % % OUTPUT: structure that contains additional information about the % optimization process. The fields of the structure are: % % generation: Number of generations performed. % % funccount: Number of times the objective function was evaluated. % % maxconstraint: Maximum constraint violation found during optimization. % % avgconstraint: Average constraint violation found during optimization. % % population: Final population of decision variables. % % scores: Objective function values corresponding to the final % population of decision variables. % % message: String that describes the exit condition of the algorithm. % % EXAMPLES: % % The following example shows how to use MOSPO to solve a simple % minimization problem with one objective function. % % fun = @(x) 100*(x(2,:)-x(1,:).^2).^2 + (1-x(1,:)).^2; % x0 = [-1 -1 -1 -1 0 0 0 0; -1 -0.5 0 0.5 -1 -0.5 0 0.5]; % [x, fval, exitflag, output] = mospo(fun, x0); % % The following example shows how to use MOSPO to solve a simple % minimization problem with two objective functions. % % fun = @(x) [x(1,:).^2 + x(2,:).^2; (x(1,:)-1).^2 + x(2,:).^2]; % x0 = [-1 -1 -1 -1 0 0 0 0; -1 -0.5 0 0.5 -1 -0.5 0 0.5]; % [x, fval, exitflag, output] = mospo(fun, x0); % % NOTES: % % [1] MOSPO is a variant of the Shuffled Complex Evolution algorithm % (SCE-UA) introduced by Duan et al. (1992). % % [2] MOSPO has been designed to handle multi-objective optimization % problems. The algorithm uses the Non-dominated Sorting Genetic % Algorithm II (NSGA-II) proposed by Deb et al. (2002) to handle the % fitness assignment and selection steps. % % [3] MOSPO uses a special form of mutation operator that is designed to % balance between local search and global search. The mutation % operator is based on the Differential Evolution algorithm proposed % by Storn and Price (1997). % % [4] MOSPO is capable of handling both linear and nonlinear constraints. % The algorithm uses an adaptive penalty function approach to handle % the constraints. % % REFERENCES: % % [1] Duan, Q., Gupta, V., and Sorooshian, S. (1992). Shuffled complex % evolution approach for effective and efficient global minimization. % Journal of Optimization Theory and Applications, 76(3), 501-521. % % [2] Deb, K., Pratap, A., Agarwal, S., and Meyarivan, T. (2002). % A fast and elitist multiobjective genetic algorithm: NSGA-II. % IEEE Transactions on Evolutionary Computation, 6(2), 182-197. % % [3] Storn, R. and Price, K. (1997). Differential Evolution - A Simple % and Efficient Heuristic for Global Optimization over Continuous % Spaces. Journal of Global Optimization, 11(4), 341-359. % % AUTHOR: % % Stewart Heitmann (2021-02-15) % % VERSION: % % 1.0 - Initial release (2021-02-15) % % CHANGELOG: % % 1.0 - Initial release (2021-02-15) % Check input arguments narginchk(2, 3); % Set default options default_options = struct(... 'Display', 'off', ... 'MaxGenerations', 500, ... 'PopulationSize', [], ... 'StallGenLimit', 20, ... 'TolFun', 1e-4, ... 'TolCon', 1e-6, ... 'HybridFcn', [], ... 'HybridFcnOptions', [], ... 'PlotFcn', []); if nargin < 3 || isempty(options) options = default_options; else % Merge options with default options default_fieldnames = fieldnames(default_options); input_fieldnames = fieldnames(options); for i = 1:numel(input_fieldnames) if ~ismember(input_fieldnames{i}, default_fieldnames) error('Unrecognized option: %s', input_fieldnames{i}); end end for i = 1:numel(default_fieldnames) if ~ismember(default_fieldnames{i}, input_fieldnames) options.(default_fieldnames{i}) = default_options.(default_fieldnames{i}); end end end % Extract options display_level = options.Display; max_generations = options.MaxGenerations; population_size = options.PopulationSize; stall_gen_limit = options.StallGenLimit; tol_fun = options.TolFun; tol_con = options.TolCon; hybrid_fcn = options.HybridFcn; hybrid_fcn_options = options.HybridFcnOptions; plot_fcn = options.PlotFcn; % Set display level switch lower(display_level) case 'off' display_iterations = false; display_final = false; display_diagnose = false; case 'iter' display_iterations = true; display_final = false; display_diagnose = false; case 'final' display_iterations = false; display_final = true; display_diagnose = false; case 'diagnose' display_iterations = true; display_final = true; display_diagnose = true; otherwise error('Invalid display level: %s', display_level); end % Get problem dimensions x0 = x0(:); [m, p] = size(x0); if p < 5*m warning('Population size is less than 5 times the number of decision variables.'); end % Initialize algorithm parameters np = floor(population_size / 2); nc = size(fun(x0), 1); alpha = 0.85; gamma = 0.85; sigma_init = 0.3; sigma_final = 1e-6; sigma = sigma_init; f = []; g = []; j = []; for i = 1:p [f(:,i), g(:,i), j(:,i)] = evaluate_objectives(x0(:,i), fun); end [rank, crowding_distance] = non_dominated_sort(f); gen = 1; stall_gen_count = 0; best_x = []; best_f = []; funccount = p; max_constraint = 0; avg_constraint = 0; % Initialize output structure output.generation = []; output.funccount = []; output.maxconstraint = []; output.avgconstraint = []; output.population = []; output.scores = []; output.message = ''; % Display initial information if display_iterations fprintf('MOSPO - Generation %d - Best Fitness: %f\n', gen, min(j)); end % Main algorithm loop while gen <= max_generations && stall_gen_count <= stall_gen_limit % Create offspring population y = repmat(x0, 1, np) + sigma * (randn(m, 2*np) .* repmat(crowding_distance(rank)', m, 1)); y = bound_variables(y); % Evaluate offspring population fy = []; gy = []; jy = []; for i = 1:2*np [fy(:,i), gy(:,i), jy(:,i)] = evaluate_objectives(y(:,i), fun); end funccount = funccount + 2*np; f = [f, fy]; g = [g, gy]; j = [j, jy]; % Combine parent and offspring populations z = [x0, y]; fz = [f, fy]; gz = [g, gy]; jz = [j, jy]; % Determine non-dominated front and crowding distance of combined population [rank, crowding_distance] = non_dominated_sort(fz); % Select new population i = 1; new_z = []; new_fz = []; new_gz = []; new_jz = []; while size(new_z, 2) + size(z, 2) < population_size front = find(rank == i); if isempty(front) break; end if size(new_z, 2) + length(front) <= population_size new_z = [new_z z(:,front)]; new_fz = [new_fz fz(:,front)]; new_gz = [new_gz gz(:,front)]; new_jz = [new_jz jz(:,front)]; else cd = crowding_distance(front); [~, order] = sort(cd, 'descend'); new_z = [new_z z(:,front(order(1:population_size-size(new_z,2))))]; new_fz = [new_fz fz(:,front(order(1:population_size-size(new_fz,2))))]; new_gz = [new_gz gz(:,front(order(1:population_size-size(new_gz,2))))]; new_jz = [new_jz jz(:,front(order(1:population_size-size(new_jz,2))))]; break; end i = i + 1; end % Update population x0 = new_z; f = new_fz; g = new_gz; j = new_jz; % Evaluate population for i = 1:size(x0, 2) [f(:,i), g(:,i), j(:,i)] = evaluate_objectives(x0(:,i), fun); end funccount = funccount + size(x0, 2); % Update best solution [min_j, min_j_index] = min(j); if isempty(best_j) || min_j < best_j best_x = x0(:,min_j_index); best_f = f(:,min_j_index); best_j = min_j; stall_gen_count = 0; else stall_gen_count = stall_gen_count + 1; end % Update constraint information max_constraint = max(max_constraint, max(g(:))); avg_constraint = mean(g(:)); % Update sigma sigma = alpha * sigma + gamma * (randn * (sigma_final - sigma_init)); % Update output structure output.generation(gen) = gen; output.funccount(gen) = funccount; output.maxconstraint(gen) = max_constraint; output.avgconstraint(gen) = avg_constraint; output.population{gen} = x0; output.scores{gen} = j; % Display information if display_iterations fprintf('MOSPO - Generation %d - Best Fitness: %f\n', gen, best_j); end % Call plot function if ~isempty(plot_fcn) plot_fcn(x0, output); end % Increment generation counter gen = gen + 1; end % Prepare output arguments xk = best_x; fval = best_f; if all(g(:) <= tol_con) exitflag = 0; output.message = 'Optimization terminated successfully.'; else exitflag = 5; output.message = 'Termination tolerance on constraint violation reached.'; end % Call hybrid function if ~isempty(hybrid_fcn) && all(g(:) <= tol_con) fval = hybrid_fcn(xk, hybrid_fcn_options); end % Display final information if display_final fprintf('MOSPO - Final Generation - Best Fitness: %f\n', best_j); end end function [f, g, j] = evaluate_objectives(x, fun) % Evaluate objectives and constraints f = []; g = []; j = []; y = fun(x); if size(y, 1) == 1 f = y; j = y; else f = sum(y, 2); for i = 1:size(y, 1) g(i,1) = max(0, -y(i)); end j = max(f); end end function x = bound_variables(x) % Bound decision variables for i = 1:size(x, 1) lb = -100 * ones(size(x(i,:))); ub = 100 * ones(size(x(i,:))); x(i,:) = max(x(i,:), lb); x(i,:) = min(x(i,:), ub); end end function [rank, crowding_distance] = non_dominated_sort(f) % Non-dominated sorting [n, p] = size(f); rank = zeros(1, p); crowding_distance = zeros(1, p); S = cell(1, p); n_points = zeros(1, p); for i = 1:p S{i} = []; n_points(i) = 0; for j = 1:p if dominates(f(:,i), f(:,j)) S{i} = [S{i} j]; elseif dominates(f(:,j), f(:,i)) n_points(i) = n_points(i) + 1; end end if n_points(i) == 0 rank(i) = 1; end end cur_rank = 1; F = cell(1, p); while any(rank == 0) Q = find(rank == 0); n = numel

相关推荐

最新推荐

recommend-type

C++实现的俄罗斯方块游戏

一个简单的俄罗斯方块游戏的C++实现,涉及基本的游戏逻辑和控制。这个示例包括了初始化、显示、移动、旋转和消除方块等基本功能。 主要文件 main.cpp:包含主函数和游戏循环。 tetris.h:包含游戏逻辑的头文件。 tetris.cpp:包含游戏逻辑的实现文件。 运行说明 确保安装SFML库,以便进行窗口绘制和用户输入处理。
recommend-type

06二十四节气之谷雨模板.pptx

06二十四节气之谷雨模板.pptx
recommend-type

基于Web开发的聊天系统(模拟QQ的基本功能)源码+项目说明.zip

基于Web开发的聊天系统(模拟QQ的基本功能)源码+项目说明.zip 本项目是一个仿QQ基本功能的前后端分离项目。前端采用了vue.js技术栈,后端采用springboot+netty混合开发。实现了好友申请、好友分组、好友聊天、群管理、群公告、用户群聊等功能。 后端技术栈 1. Spring Boot 2. netty nio 3. WebSocket 4. MyBatis 5. Spring Data JPA 6. Redis 7. MySQL 8. Spring Session 9. Alibaba Druid 10. Gradle #### 前端技术栈 1. Vue 3. axios 4. vue-router 5. Vuex 6. WebSocket 7. vue-cli4 8. JavaScript ES6 9. npm 【说明】 【1】项目代码完整且功能都验证ok,确保稳定可靠运行后才上传。欢迎下载使用!在使用过程中,如有问题或建议,请及时私信沟通,帮助解答。 【2】项目主要针对各个计算机相关专业,包括计科、信息安全、数据科学与大数据技术、人工智能、通信、物联网等领
recommend-type

wx302旅游社交小程序-ssm+vue+uniapp.zip(可运行源码+sql文件+文档)

旅游社交小程序功能有管理员和用户。管理员有个人中心,用户管理,每日签到管理,景点推荐管理,景点分类管理,防疫查询管理,美食推荐管理,酒店推荐管理,周边推荐管理,分享圈管理,我的收藏管理,系统管理。用户可以在微信小程序上注册登录,进行每日签到,防疫查询,可以在分享圈里面进行分享自己想要分享的内容,查看和收藏景点以及美食的推荐等操作。因而具有一定的实用性。 本站后台采用Java的SSM框架进行后台管理开发,可以在浏览器上登录进行后台数据方面的管理,MySQL作为本地数据库,微信小程序用到了微信开发者工具,充分保证系统的稳定性。系统具有界面清晰、操作简单,功能齐全的特点,使得旅游社交小程序管理工作系统化、规范化。 管理员可以管理用户信息,可以对用户信息添加修改删除。管理员可以对景点推荐信息进行添加修改删除操作。管理员可以对分享圈信息进行添加,修改,删除操作。管理员可以对美食推荐信息进行添加,修改,删除操作。管理员可以对酒店推荐信息进行添加,修改,删除操作。管理员可以对周边推荐信息进行添加,修改,删除操作。 小程序用户是需要注册才可以进行登录的,登录后在首页可以查看相关信息,并且下面导航可以点击到其他功能模块。在小程序里点击我的,会出现关于我的界面,在这里可以修改个人信息,以及可以点击其他功能模块。用户想要把一些信息分享到分享圈的时候,可以点击新增,然后输入自己想要分享的信息就可以进行分享圈的操作。用户可以在景点推荐里面进行收藏和评论等操作。用户可以在美食推荐模块搜索和查看美食推荐的相关信息。
recommend-type

智慧城市规划建设方案两份文件.pptx

智慧城市规划建设方案两份文件.pptx
recommend-type

数据结构课程设计:模块化比较多种排序算法

本篇文档是关于数据结构课程设计中的一个项目,名为“排序算法比较”。学生针对专业班级的课程作业,选择对不同排序算法进行比较和实现。以下是主要内容的详细解析: 1. **设计题目**:该课程设计的核心任务是研究和实现几种常见的排序算法,如直接插入排序和冒泡排序,并通过模块化编程的方法来组织代码,提高代码的可读性和复用性。 2. **运行环境**:学生在Windows操作系统下,利用Microsoft Visual C++ 6.0开发环境进行编程。这表明他们将利用C语言进行算法设计,并且这个环境支持高效的性能测试和调试。 3. **算法设计思想**:采用模块化编程策略,将排序算法拆分为独立的子程序,比如`direct`和`bubble_sort`,分别处理直接插入排序和冒泡排序。每个子程序根据特定的数据结构和算法逻辑进行实现。整体上,算法设计强调的是功能的分块和预想功能的顺序组合。 4. **流程图**:文档包含流程图,可能展示了程序设计的步骤、数据流以及各部分之间的交互,有助于理解算法执行的逻辑路径。 5. **算法设计分析**:模块化设计使得程序结构清晰,每个子程序仅在被调用时运行,节省了系统资源,提高了效率。此外,这种设计方法增强了程序的扩展性,方便后续的修改和维护。 6. **源代码示例**:提供了两个排序函数的代码片段,一个是`direct`函数实现直接插入排序,另一个是`bubble_sort`函数实现冒泡排序。这些函数的实现展示了如何根据算法原理操作数组元素,如交换元素位置或寻找合适的位置插入。 总结来说,这个课程设计要求学生实际应用数据结构知识,掌握并实现两种基础排序算法,同时通过模块化编程的方式展示算法的实现过程,提升他们的编程技巧和算法理解能力。通过这种方式,学生可以深入理解排序算法的工作原理,同时学会如何优化程序结构,提高程序的性能和可维护性。
recommend-type

管理建模和仿真的文件

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

STM32单片机小车智能巡逻车设计与实现:打造智能巡逻车,开启小车新时代

![stm32单片机小车](https://img-blog.csdnimg.cn/direct/c16e9788716a4704af8ec37f1276c4dc.png) # 1. STM32单片机简介及基础** STM32单片机是意法半导体公司推出的基于ARM Cortex-M内核的高性能微控制器系列。它具有低功耗、高性能、丰富的外设资源等特点,广泛应用于工业控制、物联网、汽车电子等领域。 STM32单片机的基础架构包括CPU内核、存储器、外设接口和时钟系统。其中,CPU内核负责执行指令,存储器用于存储程序和数据,外设接口提供与外部设备的连接,时钟系统为单片机提供稳定的时钟信号。 S
recommend-type

devc++如何监视

Dev-C++ 是一个基于 Mingw-w64 的免费 C++ 编程环境,主要用于 Windows 平台。如果你想监视程序的运行情况,比如查看内存使用、CPU 使用率、日志输出等,Dev-C++ 本身并不直接提供监视工具,但它可以在编写代码时结合第三方工具来实现。 1. **Task Manager**:Windows 自带的任务管理器可以用来实时监控进程资源使用,包括 CPU 占用、内存使用等。只需打开任务管理器(Ctrl+Shift+Esc 或右键点击任务栏),然后找到你的程序即可。 2. **Visual Studio** 或 **Code::Blocks**:如果你习惯使用更专业的
recommend-type

哈夫曼树实现文件压缩解压程序分析

"该文档是关于数据结构课程设计的一个项目分析,主要关注使用哈夫曼树实现文件的压缩和解压缩。项目旨在开发一个实用的压缩程序系统,包含两个可执行文件,分别适用于DOS和Windows操作系统。设计目标中强调了软件的性能特点,如高效压缩、二级缓冲技术、大文件支持以及友好的用户界面。此外,文档还概述了程序的主要函数及其功能,包括哈夫曼编码、索引编码和解码等关键操作。" 在数据结构课程设计中,哈夫曼树是一种重要的数据结构,常用于数据压缩。哈夫曼树,也称为最优二叉树,是一种带权重的二叉树,它的构造原则是:树中任一非叶节点的权值等于其左子树和右子树的权值之和,且所有叶节点都在同一层上。在这个文件压缩程序中,哈夫曼树被用来生成针对文件中字符的最优编码,以达到高效的压缩效果。 1. 压缩过程: - 首先,程序统计文件中每个字符出现的频率,构建哈夫曼树。频率高的字符对应较短的编码,反之则对应较长的编码。这样可以使得频繁出现的字符用较少的位来表示,从而降低存储空间。 - 接着,使用哈夫曼编码将原始文件中的字符转换为对应的编码序列,完成压缩。 2. 解压缩过程: - 在解压缩时,程序需要重建哈夫曼树,并根据编码序列还原出原来的字符序列。这涉及到索引编码和解码,通过递归函数如`indexSearch`和`makeIndex`实现。 - 为了提高效率,程序采用了二级缓冲技术,它能减少磁盘I/O次数,提高读写速度。 3. 软件架构: - 项目包含了两个可执行文件,`DosHfm.exe`适用于DOS系统,体积小巧,运行速度快;而`WinHfm.exe`则为Windows环境设计,提供了更友好的图形界面。 - 程序支持最大4GB的文件压缩,这是Fat32文件系统的限制。 4. 性能特点: - 除了基本的压缩和解压缩功能外,软件还提供了一些额外的特性,如显示压缩进度、文件一致性检查等。 - 哈夫曼编码的使用提高了压缩率,而二级缓冲技术使压缩速度提升了75%以上。 这个项目不仅展示了数据结构在实际问题中的应用,还体现了软件工程的实践,包括需求分析、概要设计以及关键算法的实现。通过这样的课程设计,学生可以深入理解数据结构和算法的重要性,并掌握实际编程技能。