Year 11 SQA Engineering: Core Concepts Revision | Year 11 SQA 工程:核心知识点梳理

📚 Year 11 SQA Engineering: Core Concepts Revision | Year 11 SQA 工程:核心知识点梳理

This article provides a focused summary of the key knowledge areas in the SQA National 5 Engineering Science course, helping Year 11 students consolidate their learning and prepare effectively for assessments. The content spans systems thinking, electronics, mechanisms, pneumatics, structures, energy and problem-solving in an engineering context.

本文聚焦苏格兰资格认证局(SQA)National 5 工程科学课程的核心知识领域,帮助 Year 11 学生巩固所学,有效备考。内容涵盖系统思维、电子学、机构、气动、结构、能量以及工程背景下的问题解决。


1. Engineering Systems and Subsystems | 工程系统与子系统

Every engineered product can be modelled as a system with a clear boundary. A system takes an input, processes it and produces a desired output. Complex systems are often broken down into smaller subsystems, each performing a specific function.

每个工程产品都可以用一个具有清晰边界的系统来建模。系统接收输入、对其进行处理并产生期望的输出。复杂系统常被分解为若干个子系统,每个子系统完成特定功能。

A good example is a home heating system: the input is the desired temperature set by the user, the process involves a thermostat comparing the room temperature, and the output is heat from a boiler. The subsystem for ignition control or pump activation are part of the overall system.

一个典型的例子是家庭供暖系统:输入是用户设定的期望温度,过程包括温控器对比室温,输出是锅炉产生的热量。点火控制或水泵启动等子系统是整个大系统的组成部分。

When analysing any engineering product, you should identify the system diagram showing input, process and output blocks. Subsystems help to simplify troubleshooting and modular design.

分析任何工程产品时,都应该画出输入、过程和输出模块的系统图。子系统有助于简化故障排查和模块化设计。


2. Input, Process and Output Blocks | 输入、过程与输出模块

In SQA engineering questions, you are often asked to complete or interpret block diagrams. Input devices convert physical quantities into signals, for example a thermistor changes resistance with temperature, a light-dependent resistor (LDR) responds to light, and a switch provides a digital on/off signal. Process blocks modify the signal using components such as transistors, comparators or microcontrollers. Output devices then act on the processed signal, like LEDs, buzzers, motors or solenoids.

在 SQA 工程考题中,常要求补全或解读模块图。输入装置将物理量转化为信号,例如热敏电阻随温度改变阻值、光敏电阻(LDR)响应光照变化、开关提供数字通断信号。过程模块利用晶体管、比较器或微控制器等元件处理信号,输出装置则根据处理后的信号动作,例如 LED、蜂鸣器、电机或电磁阀。

A temperature-controlled fan system might have a temperature sensor as input, a transistor switching circuit as process, and a DC motor as output. The block diagram must show the direction of signal flow clearly.

一个温控风扇系统可能以温度传感器为输入、晶体管开关电路为处理环节、直流电机为输出。模块图必须清晰地显示信号流向。

Typical analogue sensors produce a varying voltage; a comparator process block can compare this voltage with a reference. When the sensor voltage exceeds the reference, the output changes state. This is the foundation of many simple control systems.

典型的模拟传感器产生变化的电压;比较器处理模块可将该电压与参考电压对比。当传感器电压超过参考值时,输出状态改变。这是许多简单控制系统的基础。


3. Electronics: Resistors, LEDs and Transistors | 电子学:电阻、LED 与晶体管

Resistance is measured in ohms (Ω) and is calculated using Ohm’s law:

V = I × R

where V is voltage in volts (V), I is current in amperes (A) and R is resistance in ohms (Ω). A resistor in series limits current and protects components such as LEDs.

电阻以欧姆(Ω)为单位,利用欧姆定律计算:V = I × R,其中 V 为电压(V),I 为电流(A),R 为电阻(Ω)。串联电阻可限制电流,保护 LED 等元件。

An LED must always be connected in series with a current-limiting resistor. The value of the resistor is found from R = (Vₛ − V_LED) / I_LED. For example, a 5 V supply with a 2 V LED running at 20 mA requires R = (5 − 2) / 0.02 = 150 Ω.

LED 必须与限流电阻串联。电阻值由 R = (Vₛ − V_LED) / I_LED 求得。例如,5 V 电源、2 V LED、20 mA 工作电流,所需 R = (5 − 2) / 0.02 = 150 Ω。

A transistor acts as an electronic switch. In an NPN transistor, a small current at the base (I_B) switches on a larger current between collector and emitter (I_C). The transistor can be used to interface a low-current microcontroller output to a high-current device such as a motor or relay.

晶体管可用作电子开关。NPN 型晶体管中,基极的小电流(I_B)可控制集电极和发射极之间的大电流(I_C)。晶体管常用于将微控制器的小电流输出与大电流设备(如电机或继电器)接口。


4. Microcontroller Programming and Control | 微控制器编程与控制

National 5 Engineering Science often uses flowchart-based programming to control PICAXE or similar microcontrollers. Programs use commands such as HIGH, LOW, WAIT, GOTO and IF…THEN. The microcontroller reads digital or analogue inputs and sets output pins high or low accordingly.

National 5 工程科学通常使用基于流程图的编程来控制 PICAXE 或类似的微控制器。程序使用 HIGH、LOW、WAIT、GOTO 和 IF…THEN 等命令。微控制器读取数字或模拟输入,并相应地设置输出引脚为高电平或低电平。

An automatic night-light program might read an LDR value: if the reading is below a threshold, turn an LED on (HIGH), else turn it off (LOW). A delay (WAIT) may be added to prevent rapid flickering. Students must be able to draw flowcharts and write simple programs from a description of the required system behaviour.

一个自动夜灯程序可读取 LDR 数值:若读数低于阈值,则点亮 LED(HIGH),否则熄灭(LOW)。可加入延时(WAIT)以防止快速闪烁。学生必须能够根据系统行为描述绘制流程图并编写简单程序。

Subroutines and the use of variables extend program capability. A variable can store a sensor reading, which is then used in a comparison. Understanding the scanning loop structure (start, read inputs, make decisions, set outputs, loop) is essential for successful control programming.

子程序和变量的使用可扩展程序功能。变量可存储传感器读数,随后用于比较。理解扫描循环结构(起始、读入输入、作出判断、设置输出、循环)对于编写成功的控制程序至关重要。


5. Levers and Mechanical Linkages | 杠杆与机械连杆

Levers are simple machines that change the magnitude and direction of a force. They are classified into three orders based on the position of the fulcrum, effort and load. A first-order lever has the fulcrum between effort and load (e.g., see-saw). A second-order lever has the load between fulcrum and effort (e.g., wheelbarrow). A third-order lever has the effort between fulcrum and load (e.g., tweezers).

杠杆是改变力的大小和方向的简单机械。根据支点、动力和负载的位置分为三类。第一类杠杆支点在动力与负载之间(如跷跷板),第二类杠杆负载在支点与动力之间(如手推车),第三类杠杆动力在支点与负载之间(如镊子)。

Mechanical advantage (MA) is the ratio of load to effort: MA = Load / Effort. Velocity ratio (VR) is the ratio of the distance moved by the effort to the distance moved by the load: VR = d_effort / d_load. Efficiency is given by (MA / VR) × 100%.

机械效益(MA)是负载与动力的比值:MA = 负载 / 动力。速度比(VR)是动力移动距离与负载移动距离之比:VR = d_动力 / d_负载。效率为 (MA / VR) × 100%。

Linkages convert motion, for example a reverse-motion linkage changes the direction of movement, and a bell-crank linkage changes motion through 90°. Students should be able to predict the output movement for a given input and identify the type of linkage from a diagram.

连杆机构可转换运动,例如反向运动连杆改变运动方向,曲柄连杆将运动转过 90°。学生应能根据给定输入预测输出运动,并从示意图中识别连杆类型。


6. Gears, Pulleys and Drive Systems | 齿轮、皮带轮与传动系统

Gear systems transmit rotary motion and torque. The velocity ratio for simple gears is the ratio of the number of teeth on the driven gear to the number of teeth on the driver gear. A small gear driving a larger gear gives a reduction in speed but an increase in torque (and vice versa).

齿轮系统传递旋转运动和扭矩。简单齿轮的速度比是从动齿轮齿数与主动齿轮齿数之比。小齿轮驱动大齿轮会降低转速、增大扭矩(反之亦然)。

For a simple gear train, VR = (number of teeth on driven) / (number of teeth on driver). For compound gears, the VR multiplies: the overall VR = product of driven teeth / product of driver teeth. Idler gears change direction but do not affect the overall VR of the pair.

对于简单齿轮系,VR =(从动轮齿数)/(主动轮齿数)。对于复合齿轮,VR 相乘:总 VR = 各从动轮齿数乘积 / 各主动轮齿数乘积。惰轮改变方向但不影响该对齿轮的总 VR。

In pulley and belt systems, the velocity ratio is found from the diameters of the driver and driven pulleys: VR = diameter of driven pulley / diameter of driver pulley. The same concept of speed reduction or increase applies. Toothed belts prevent slipping and maintain timing.

在皮带轮系统中,速度比由主动轮和从动轮直径决定:VR = 从动轮直径 / 主动轮直径。同样适用减速或增速概念。同步带可防止打滑并保持同步。


7. Pneumatic Systems and Components | 气动系统与元件

Pneumatic systems use compressed air to produce motion and force. Key components include compressors, valves, cylinders and connecting tubing. Directional control valves, such as 3/2 or 5/2 valves, control the flow of air to extend or retract a cylinder.

气动系统利用压缩空气产生运动和力。关键元件包括压缩机、阀、气缸及连接管路。方向控制阀(如二位三通阀 3/2 或二位五通阀 5/2)控制气流使气缸伸出或缩回。

A single-acting cylinder extends with air pressure and retracts by a spring; a double-acting cylinder uses air pressure on both sides of the piston to extend and retract. The force produced by a cylinder is F = P × A, where P is the gauge pressure and A is the piston area.

单作用气缸依靠气压伸出、弹簧缩回;双作用气缸利用活塞两侧的气压实现伸出和缩回。气缸产生的力 F = P × A,其中 P 为表压,A 为活塞面积。

Circuit diagrams use standard symbols. Students must be able to draw and interpret pneumatic circuits, including limits on speed control using flow regulators and the use of shuttle valves to provide an OR logic function.

气动回路图采用标准符号。学生必须能绘制并解读气动回路,包括使用流量调节阀限速,以及利用梭阀实现 OR 逻辑功能。


8. Forces, Moments and Structural Equilibrium | 力、力矩与结构平衡

For a structure to be in static equilibrium, the sum of all forces in any direction must be zero (Σ F = 0) and the sum of moments about any point must be zero (Σ M = 0). A moment is the turning effect of a force: moment = force × perpendicular distance from the pivot.

结构处于静力平衡时,任意方向上合力为零(Σ F = 0),且对任意点的合力矩为零(Σ M = 0)。力矩是力的转动效应:力矩 = 力 × 到支点的垂直距离。

Reaction forces at supports can be calculated using the principle of moments. Taking moments about one support eliminates the reaction at that support from the equation, allowing the other reaction to be found. This is essential for beam and truss analysis.

支座反力可用力矩原理计算。对某一支座取矩可消去该支座反力,从而求出另一支座反力。这对于梁和桁架分析至关重要。

Common structures include cantilevers, simply supported beams and frameworks. Free-body diagrams are used to isolate the structure and show all external forces and reactions, a crucial step before performing any calculation.

常见结构包括悬臂梁、简支梁和框架。脱离体图用于隔离结构并标出所有外力和反力,是进行计算前的关键步骤。


9. Stress, Strain and Material Properties | 应力、应变与材料特性

When a force is applied to a material, it experiences stress and strain. Stress (σ) is force per unit area: σ = F / A, measured in pascals (Pa) or N m⁻². Strain (ε) is the extension per unit original length: ε = ΔL / L₀, and is dimensionless or expressed as a ratio.

当力施加于材料时,材料会产生应力和应变。应力(σ)是单位面积上的力:σ = F / A,单位为帕斯卡(Pa)或 N m⁻²。应变(ε)是单位原长的伸长量:ε = ΔL / L₀,无量纲或以比值表示。

Young’s modulus (E) describes the stiffness of a material in the elastic region: E = σ / ε. A material with a high Young’s modulus (e.g., steel) is stiff; a material with a low modulus (e.g., rubber) stretches easily. The elastic limit is the point beyond which the material will not return to its original shape.

杨氏模量(E)描述材料在弹性区域的刚度:E = σ / ε。杨氏模量高的材料(如钢)刚硬,模量低的材料(如橡胶)容易拉伸。弹性极限是材料不再恢复原形的临界点。

Factor of safety = ultimate tensile strength / allowable working stress. Engineers apply a factor of safety to account for unexpected loads and material imperfections. Ductile materials undergo plastic deformation before fracture, giving warning; brittle materials fail suddenly.

安全系数 = 极限抗拉强度 / 许用工作应力。工程师使用安全系数以应对意外载荷和材料缺陷。韧性材料在断裂前发生塑性变形,给出预警;脆性材料会突然失效。


10. Energy, Power and Efficiency in Engineering | 工程中的能量、功率与效率

Energy exists in many forms: kinetic, potential (gravitational and strain), electrical, heat, light and sound. The principle of conservation of energy states energy cannot be created or destroyed, only converted from one form to another. This underpins efficiency calculations.

能量有多种形式:动能、势能(重力势能和应变能)、电能、热能、光能和声能。能量守恒原理指出能量不能创造或消灭,只能从一种形式转换为另一种。这是效率计算的基础。

Power is the rate of energy transfer, measured in watts (W). In mechanical systems, power P = F × v (force × velocity) or P = T × ω (torque × angular velocity). In electrical systems, P = I × V. Efficiency = (useful output power / input power) × 100%.

功率是能量传递的速率,单位为瓦特(W)。在机械系统中,功率 P = F × v(力 × 速度)或 P = T × ω(扭矩 × 角速度)。在电气系统中,P = I × V。效率 =(有用输出功率 / 输入功率)× 100%。

Whenever energy is converted, some is transferred to less useful forms, often heat due to friction or electrical resistance. Improving efficiency, e.g., by lubrication or using low-resistance conductors, reduces waste and operating costs. Students should be able to interpret Sankey diagrams showing energy flows.

能量转换时总有一部分转化为不太有用的形式,通常是因摩擦或电阻产生的热量。通过润滑或使用低电阻导体等方式提高效率,可减少浪费和运行成本。学生应能解读显示能量流动的桑基图。


11. Engineering Design and Problem-solving | 工程设计问题解决

The engineering design process is central to SQA Engineering Science. It involves identifying a need, developing a specification, generating ideas through research and modelling, selecting a solution, prototyping and evaluating. Technical sketches, orthographic drawings and CAD models may be used.

工程设计过程是 SQA 工程科学的核心。它包括识别需求、制定规格、通过研究和建模产生创意、选择方案、原型制作和评估。可能会使用技术草图、正投影图和 CAD 模型。

Problem-solving often requires combining knowledge from different areas. For example, designing an automated barrier may involve a microcontroller program, a gear motor, a limit switch input and structural support. Being able to break a problem down into subsystems and apply the appropriate principles is a key skill.

问题解决往往需要综合不同领域的知识。例如,设计一个自动道闸可能涉及微控制器程序、齿轮电机、限位开关输入和结构支撑。能将问题分解为子系统并应用相应原理是一项关键技能。


12. Safety, Sustainability and Engineering Ethics | 安全、可持续性与工程伦理

Safe working practices are essential. This includes using appropriate personal protective equipment, following risk assessments, and understanding electrical safety (e.g., insulation, fuses, earthing). Products must comply with relevant standards and legislation.

安全工作规范至关重要,包括使用适当的个人防护装备、遵循风险评估,以及理解电气安全(如绝缘、保险丝、接地)。产品必须符合相关标准和法规。

Sustainability is a growing theme. Engineers select materials based on life-cycle analysis, considering extraction, manufacture, use and disposal. Reducing energy consumption, designing for disassembly and using recycled materials all contribute to a circular economy.

可持续性是一个日益重要的主题。工程师基于生命周期分析选择材料,考虑开采、制造、使用和处置。减少能耗、面向拆卸的设计以及使用回收材料都有助于实现循环经济。

Ethical considerations include product safety, data privacy in connected devices and the environmental responsibility of the engineer. SQA candidates should be able to discuss the social and environmental impact of engineering decisions.

伦理考量包括产品安全、联网设备中的数据隐私以及工程师的环境责任。SQA 考生应能讨论工程决策对社会和环境的影响。


Published by TutorHao | Engineering Revision Series | aleveler.com

更多咨询请联系16621398022(同微信)

Comments

屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from aleveler.com

Subscribe now to keep reading and get access to the full archive.

Continue reading