日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

RME40002代做、代寫c/c++,Python程序
RME40002代做、代寫c/c++,Python程序

時間:2024-09-27  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 1 of 21 
 
School of Science, Computing and Engineering Technologies 
RME40002 
Mechatronics Systems Design 
 
Portfolio Tasks Description 
Semester 2, 2024 
 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 2 of 21 
 
Instructions 
1. The portfolio is individual assessment. You must complete the tasks by your own. 
Read the RME40002 Assessment Criteria document in Canvas for details. 
2. You could get feedback from your tutor in class on your solution prior to the 
submission due date. 
3. Use the Portfolio Template provided in Canvas for your submission. 
4. You do not need to copy the task questions into your portfolio, but clearly label 
the task number you are answering. 
5. For MATLAB questions, include all source codes and commands as text in the 
portfolio. If a question asks you to plot or display something to the screen, also 
include the screenshots of plot and screen output your code generates. Include 
results and sufficient comments if required. 
6. For LabVIEW questions, provide screenshots of both front panel and block diagram 
with sufficient resolution for readability. 
7. For non-programming questions, you may type in your answers or scan your 
handwritten answers to include in the portfolio. 
8. You should submit two separate portfolios for the tasks required in this document. 
Each portfolio must be a single electronic file in PDF format or Word document. 
9. The file name and deadline of your portfolio submission requirement: 
 
First Portfolio – Answers to tasks from Week 1 to 4 
File name [Your student ID]-[PF1] 
For example, 12345678-PF1.pdf 
Submission deadline Sunday, September 1, 2024 by 23.59pm 
 
Second Portfolio – Answers to tasks from Week 5 to 8 
File name [Your student ID]-[PF2] 
For example, 12345678-PF2.pdf 
Submission deadline Sunday, September 29, 2024 by 23.59pm 
 Penalty will be applied for late submission (see Unit Outline for details). 
10. The only way to submit your portfolio for assessment is uploading through 
Canvas>>Assignment>>Portfolio Submission. Submissions by using other 
methods such as through Email would not be accepted. 
11. Submissions failing to satisfy the above requirements would NOT be assessed! 
12. You also need to keep a record of the source codes of your solution. You may be 
asked to provide the source codes during the assessment period. RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 3 of 21 
 
Week 1 
 
1.1 LabVIEW Basics – Data types, math calculation, and display 
 
1.1.1 Data types 
 
This task is designed to help students get started with LabVIEW, which also helps to 
familiarize the common data types. 
 
 1) Start a new file in the LabVIEW and save it as Week1p1p1.vi 
2) Select Window>>Show Block Diagram (Ctrl+E) 
3) Create controllers-indicator pairs for different variables such as 
i. Name (strings), 
ii. Age (doubles), 
iii. LED (Booleans), 
iv. Exam results (array) 
v. A cluster that contains all variables above, bundle them, then unbundle and 
show with a cluster indicator containing Name, Age and LED three items 
only. 
4) Organize components in your front panel and block diagram for readability 
5) Provide screenshots of both the front panel and block diagram you have 
designed in the portfolio report. Your results may be like below. 
 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 4 of 21 
1.1.2 Math calculation 
 
This task practices how to program a math expression and calculate its result. 
 
Calculate the value of y according to the following expression by using the blocks of 
numeric palette, formula node and mathscript, respectively. 
 
 1) Start a new file in the LabVIEW and save it as Week1p1p2.vi 
2) Select Window>>Show Block Diagram (Ctrl+E) 
3) In the block diagram, right-click and select Functions>>Numeric. 
i. Basic math operations can be found in Numeric such as Add, Subtract, 
Multiply, Divide, Square, and Square root. 
ii. Complete the calculation with basic math blocks. 
4) In the block diagram, right-click and select Functions>>Structure>> 
Mathscript. Complete the same calculation for y with mathscript. 
5) In the block diagram, right-click and select Functions>>Structure>> Formula 
node. Complete the same calculation for y with the formula node. 
6) Create indicators to display the results as calculated by the above methods. 
7) Organize components in your front panel and block diagram for readability 
8) Provide screenshots of both the front panel and block diagram you have 
designed in the portfolio report. Your results will be like below. 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 5 of 21 
 
1.2 Mechatronics Project – Literature review 
 
Peruse the Mechatronics Project Guidelines document and complete a preliminary 
review on how the pick-and-place robotic arms are used in reality. Briefly introduce 
the working principles of at least two examples of such existing equipment and their 
applications. You are suggested to use photo or diagram for clear explanation. 
 
Approximately 300 words exclusive of photo and graph are required in this task. 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 6 of 21 
 
Week 2 
 
2.1 MATLAB Basics – Script file, if, for, while 
 
2.1.1 The if Construct 
 
The unit price of a product changes according to the number of units purchased, a 
10% discount is applied when purchasing over 30 units. A customer could enter the 
number of units and original unit price in the command window. Then, the overall 
price is calculated. You should use the if Construct in MATLAB to solve this task. 
 
 1) Write a program in a MATLAB script file named as Week2p1p1.m 
2) The program asks the user to enter the number of units and the unit price in the 
command window. 
3) The program then displays the total price in the command window. 
4) Copy & Paste both the script code in your edit window and the results in your 
command window to the portfolio report. 
Command window example: 
Please enter the number of units: 31 
Please enter the price per unit $: 10 
The overall price is $XXXXX 
 
2.1.2 The for Loop 
 
Write a program to calculate the sum of the first 6 terms of the series: 
 
and display the result. You should use the for Loop in MATLAB to solve this task. 
 
 1) Write a program in a MATLAB script file named as Week2p1p2.m 
2) Calculate the sum for n = 6 and show the result in the command window. 
3) Copy & Paste both the script code in your edit window and the results in your 
command window to the portfolio report. 
Command window example: 
The result for n = 6 is XXXXX. 
 
2.1.3 The while Loop 
 
For sum = 1+2+… + n, create a MATLAB program to calculate the n value that 
yields sum = 5050. The task can be represented by the following formula: 
 
You should use the while Loop in MATLAB to solve this task. RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 7 of 21 
 
1) Write a program in a MATLAB script file named Week2p1p3.m 
2) Find the n value by using the while loop. 
3) Copy & Paste both the script code in your edit window and the results in your 
command window to the portfolio report. 
Command window example: 
For sum = 5050, n is XXX. 
 
2.2 LabVIEW Further – Case, for-loop and while-loop 
 
2.2.1 The case Structure (Do NOT use mathscript-node, formula-node or MATLABscript)
 
The problem is the same as 2.1.1. Whereas, students should use the case structure in 
LabVIEW to calculate the total price. In addition, students should create two text 
boxes such as “unit purchased” and “unit price” shown in the following. A user can 
enter values in the text boxes and the corresponding total price is calculated. 
 
 1) Start a new file in the LabVIEW and save it as Week2p2p1.vi 
2) Calculate the total price using the case structure. 
3) Organize components in your front panel and block diagram for readability. 
4) Provide screenshot of both the front panel and block diagram in the portfolio 
report.  
 
2.2.2 The for Loop (Do NOT use mathscript-node, formula-node or MATLAB-script) 
 
The problem is the same as 2.1.2. students are asked to calculate the sum of the first 6 
terms of the series: 
 
and display the result. Moreover, students should make use of the for-loop structure in 
LabVIEW and display the value of the sum. 
 
 1) Start a new file in the LabVIEW and save it as Week2p2p2.vi 
2) Calculate the value of the sum by using “shift register” or “feedback node” 
with for-loop. (Do NOT use “Add Array Elements” function in this task) 
3) Organize components in your front panel and block diagram for readability. RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 8 of 21 
 
4) Provide screenshot of both the front panel (with your calculated result clearly 
displayed) and block diagram in the portfolio report. 
 
2.2.3 The while Loop (Do NOT use mathscript-node, formula-node or MATLABscript).
 
The problem is the same as 2.1.3. Students are asked to create a LABVIEW program 
to calculate the n value such that 1+2+… + n = 5050. 
 
1) Start a new file in the LabVIEW and save it as Week2p2p3.vi 
2) Use shift register or feedback node within the while-loop to calculate the 
summation then determine the n value. 
3) Organize components in your front panel and block diagram for readability. 
4) Provide screenshot of both the front panel (with your calculated result clearly 
displayed) and block diagram in the portfolio report. 
 
2.3 Mechatronics Project – Design tasks 
 
Refer to Appendix, Section 2: Task Elements in the Mechatronics Project Guidelines 
document. Answer and explain the following questions: 
 
1) What is the task you feel most confident to accomplish; and explain why based on 
your prior knowledge or practice? 
2) What are the most challenging tasks for you; and what is your plan to improve 
yourself in those areas through this project development? 
 
Approximately 200 words are required in this task. 
 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 9 of 21 
 
Week 3 
 
3.1 Import MATLAB code in LabVIEW using Mathscript 
 
Note: You must use Mathscript to solve this task. 
 
Simulation of throwing a ball 
 
Below are all the steps you need to follow, but you may also add your own 
meaningful comments to the code as you write it. 
1) Start a new file in LabVIEW and save it as Week3p1.vi 
2) In the file, define some constants (label the constants for readability) 
i. ℎ = 1.7, % Initial height of ball at release is 1.7 m 
ii.      = 9.8, % Gravitational acceleration is 9.8 m/s2 
iii.      = 4, %Velocity of ball at release is 4 m/s 
iv.      = 45, % Angle of the velocity vector at time of release is 45 degrees 
3) Next, make a time vector     , that has 1000 linearly spaced values 
between 0 and 1, inclusive. 
4) In the following figure, x denotes distance and y is height, the 
equations below describe their dependence on time and all the other 
parameters (initial height h, gravitational acceleration g, initial ball 
velocity v, angle of velocity vector in degrees     ). See the following 
illustration: 
 
Solve for x and y 
5) Approximate when the ball hits the ground. 
i. Find the index when the height first becomes negative. 
ii. The distance at which the ball hits the ground is the value of x at that index 
iii. Display the result in Front Panel: The ball hits the ground at a distance of 
X meters. (where X is the distance you found in part ii above) 
6) Plot the ball’s trajectory in Front Panel 
i. Create a new XY graph which can be found in Modern >> XY Graph RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 10 of 21 
 
ii. Plot the ball’s height on the y axis and the distance on the x axis using a 
blue solid line. 
iii. Label the axes meaningfully and give the figure a title. 
iv. In the same graph, plot the ground as a dashed red line. This should be a 
horizontal line going from 0 to the maximum value of x. The height of this 
line should be 0. 
7) Run the program and verify that the ball indeed hits the ground around the 
distance you estimated in 5) and create messages in the form “The ball hits the 
ground at a distance of x.xxxx meters.” 
8) Organize components in your front panel and block diagram for readability. 
9) Provide screenshot of both the front panel and block diagram in the portfolio 
report. 
Example (Note: the distance in below figure is just exemplary): 
 
3.2 Mechatronics Project – Your individual project plan 
 
You should have formed your project group by this week. In this task, address the 
following questions: 
1) Outline the task allocation among your group members. 
2) Outline your individual project plan according to semester weeks. Use a Gantt 
chart with a brief description of each week’s tasks. 
 
Approximately 200 words exclusive of photo and graph are required in this task. 
 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 11 of 21 
 
Week 4 
 
4.1 PLC control design for motors 
 
A PLC control system contains two motors. When a main switch (normally open) is 
on, motor A will start immediately. After 2 seconds, motor B should be started as 
well. When the main switch is off, motor B must be stopped first, and after 2 seconds 
motor A stops. 
Design a program and use the following Input/Output ports to simulate the above 
application: 
I1: Main switch 
Q1: Relay of the motor A control circuit 
Q2: Relay of the motor B control circuit 
1) Build and simulate your PLC program in the Siemens PLC LOGO! Software to 
verify the design requirements. 
2) In your portfolio report, provide the PLC ladder diagram of your design and the 
screenshots of the simulation results from the bottom panel of the LOGO! 
Software. In addition, explain your design solution and discuss the simulation 
results. 
 
4.2 PLC control design for automatic garage door 
 
A PLC system is used to control an automatic garage door that can perform the 
following tasks: 
i. When a pushbutton switch (normally open) is pressed, the motor is started 
clockwise to open the garage door. After 5 seconds the motor stops and a 
lamp is turned on to indicate that the door is opened for the car to go 
through. 
ii. After 10 seconds, the lamp is turned off and the motor is started anticlockwise
to close the garage door. 
iii. The motor stops after 5 seconds and the door is closed. 
iv. The above operations can be repeated without the power reset. 
Design a program and use the following Input/Output ports to simulate the above 
application: RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 12 of 21 
 
I1: Pushbutton switch 
Q1: Relay of the motor clockwise control circuit 
Q2: Relay of the motor anti-clockwise control circuit 
Q3: Lamp 
1) Build and simulate your PLC program in the Siemens PLC LOGO! Software to 
verify the design requirements. 
2) In your portfolio report, provide the PLC ladder diagram of your design and the 
screenshots of the simulation results from the bottom panel of the LOGO! 
Software. In addition, explain your design solution and discuss the simulation 
results. 
 
 
4.3 Mechatronics Project – Preliminary design concepts 
 
It is expected that you have discussed with your group on the project development 
details. This assessment is designed to help you clarify the specific design that your 
group likes to achieve in the project. 
1) Describe the initial design concepts as a result of your group discussion. 
Recommend adding a sketch or drawing to visualize your desired prototype. 
2) Describe the specific design work that you will complete for the project. 
 
Approximately 200 words exclusive of photo and graph are required in this task. 
 
First portfolio submission due by next week: 
You should submit your first portfolio by the end of next week. Refer to the 
Instructions in Page 2 of this document for details. 
 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 13 of 21 
 
Week 5 
 
5.1 System modelling and simulation in LabVIEW 
 
Suppose a DC motor mathematic model can be described by the following inputoutput
differential equation: 
where ω(t) is the angular velocity of the motor shaft, u(t) is the input voltage, and a, b 
are model parameters. 
In order to find the values of the model parameters a and b, an experiment was carried 
out by injecting a square wave voltage to the motor (i.e., u = 0-1Vpp). The angular 
velocity of the motor is not directly measurable, however, the motor has an integral 
angle sensor to measure the rotational angle of the motor shaft θ(t). 
During the experiment, the input voltage and the rotational angle signals are collected 
with a sampling period of 0.1 second, the curves of which are shown in the following 
figure. 
 
One dataset in the above figure is tabulated below, which is sufficient to solve the 
problem in this task. 
Time (second) Input voltage u (Vol) Output angle θ (radian) 
Amplitude
Input voltage (Vol)
Angle (radian)RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 14 of 21 
 
Assuming the following relationship 
1) Use the above data to estimate the values of model parameters a and b. Provide 
the details on your working step. 
2) Build the model in LabVIEW (Do NOT use mathscript-node, formula-node or 
MATLAB-script in this task) and simulate the response of the model to a 0-1Vpp 
square wave input voltage with period=5 second and duty cycle=50% (refer to the 
above figure) for 7 seconds. Display the simulated output angle and the square 
wave input signals in the same graph (results are expected to be similar to the 
above figure), and then discuss and justify the correctness of your results. 
 
5.2 Mechatronics Project – Teamwork 
 
This task is designed to reflect your group project activities. Research shows that 
collaborative problem-solving leads to better outcomes. In this task, address your 
teamwork involvement, group progress, digital tools used for collaboration, one latest 
group meeting minutes. In addition, report any teamwork conflicts if any and how you 
will manage to resolve it. 
 
Approximately 200 words are required in this task. 
 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 15 of 21 
 
Week 6 
 
6.1 LabVIEW – Create a square wave reference trajectory. 
 
Students should create a square wave with an amplitude value switching between 0 
and 1; and a frequency of 0.5 Hz in this task. 
 
1) Start a new file in the LabVIEW and save it as Week6p1.vi 
2) You may use the ‘simulate sig’ block in Signal Process>>Wfm 
Generation; or may use the ‘square wave’ block in Signal Process>>Sig 
Generation with proper parameters. 
3) Display at least 2 periods of the waveform on a waveform chart. 
4) Organize components in your front panel and block diagram for readability 
5) Provide screenshot of both the front panel and block diagram in the 
portfolio report. 
 
Example: 
 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 16 of 21 
 
6.2 LabVIEW – Create trapezoidal wave reference trajectory 
 
A periodical trapezoidal waveform has a period of 5 seconds. For the first 2 seconds, 
the value gradually increases from 0 to 2 and remains at 2 for another 2 seconds. 
Then, the value rapidly decreases back to 0 in 1 second. 
 
To create this waveform signal with LabVIEW, you can use ‘Elapsed Time’ and 
Mathscript node, its Front Panel and Block Diagram is shown below: 
 
Please note that in the property of ‘Elapsed Time’, ‘Automatically rest after time 
target’ is turned off. Following the steps below to complete this task: 
 
 1) Start a new file in the LabVIEW and save it as Week6p2.vi 
2) Create a program as the above to display the trapezoidal waveform. 
3) Replace the Mathscript node, with LabVIEW functions to build the relation 
between the output ‘value’ and the inputs variables of the original Mathscript 
node. (Do NOT use Mathscript, MATLAB script, or formula node in this task. RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 17 of 21 
 
You may use multiple ‘select’ nodes for ‘case structure’). 
4) Display at least 2 periods of the trapezoidal wave on a waveform chart. 
5) Organize components in your front panel and block diagram for readability. 
6) Provide screenshot of both the front panel and block diagram in the portfolio 
report. 
 
6.3 Circuit design 
 
An analogue control circuit as shown in the following figure is used to implement the 
controller output u according to the following equation: 
     =      − 0.5     
where r and      are the input signals to the circuit. 
Calculate the values of the resistors R1 and R2 such that the circuit can implement the 
above controller equation. Provide your calculation steps in the portfolio report. 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 18 of 21 
 
Week 7 
 
7.1 LabVIEW – Simulation of a PID control system 
 
In this task, students are asked to create a control system simulation with a PID 
controller in the ‘control and simulation loop’. 
 
The following figure describes a simple mass-spring-damper system to be controlled, 
where m is the mass of a moving object; u is the external control force; y is the 
displacement, k is the spring constant; and b is the friction coefficient. 
 
 Based on Newton's second law, the equation of motion of the above system can be 
described by the following differential equation 
If the parameters are known as m=1, b=15, and k=25, then we have 
 
Alternatively, you can equivalently convert the above equation as a transfer function: 
 
1) Start a new file in the LabVIEW and save it as Week7p1.vi 
2) Students should use Control & Simulation Loop in Control & Simulation >> 
Simulation with the configuration shown in the following figure 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 19 of 21 
 
 3) In the Control & Simulation Loop, students should create a PID controller, 
plant and reference signal. 
4) The requirement for the reference is the same as the square wave in Week 6 
tasks. Students can reuse the program week6p1.vi. 
5) Students can use PID blocks in Control & Simulation >> Simulation >> 
Continuous Linear System or PID.vi in Control & Simulation >> PID or build 
PID from integrator and derivative blocks. 
6) Plant Model can be created by basic integrator blocks or Transfer function 
block in Control & Simulation >> Simulation >> Continuous Linear System. 
7) Tune the PID parameters until the design specifications are satisfied: the 
steady-state error less than 5%; the settling time less than 0.25 second. (Settling 
time is the time required for the response curve to reach and stay 5% of the 
final value). 
8) Organize components in your front panel and block diagram for readability 
9) Provide screenshot of both the front panel and block diagram in the portfolio 
report. 
10) Discuss how the PID control parameters affect the settling time and steadystate
error in the portfolio report. 
Example: 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 20 of 21 
 
Week 8 
 
8.1 LabVIEW – Counter design (Do NOT use Mathscript-node, formula-node or 
MATLAB-script in this task) 
 
In this task, students will create a click speed test program by using LabVIEW. 
 
1) Start a new file in the LabVIEW and save it as Week8p1.vi 
2) The test lasts for 10 seconds and the time spent is shown in “Elapsed time” 
3) A user can click a button with the label “Click Me”. 
4) When a user clicked the button, the “Counter value” is incremented by 1, and 
the last moment when the button is clicked is recorded in “Last time clicked”. 
5) Students can use the ‘Count up’ block in Real-Time>>Function blocks. 
6) The period is defined as the time difference between the last time clicked and 
the second last time when the button was clicked. 
7) Finally, the smallest period is shown in the “smallest period”. 
8) Organize components in your front panel and block diagram for readability 
9) Provide screenshot of both the front panel and block diagram in the portfolio 
report. 
Example: 
 
8.2 Mechatronics Project – Progress reflection 
By this week, your group should have made some progress on the project 
development. Address the technical development your group have completed and 
point out your main contributions. What are the gaps between your group’s current 
progress and the initial plan? How to fill the gaps in the remaining weeks? 
Provide reflection on your learning experience, time management, and teamwork 
involvement. 
 
Approximately 200 words are required in this task. 
 
Second portfolio submission due by this week: 
You should submit your second portfolio by the end of this week. Refer to the 
Instructions in Page 2 of this document for details. 
 
 RME40002 Mechatronics Systems Design – Portfolio Tasks Description 
Page 21 of 21 
 
End of Portfolio Tasks Description 

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:代寫COMP 636、代做Python語言程序
  • 下一篇:莆田鞋在哪里買?這七個渠道應有盡有
  • ·代做ELEC5307、python程序語言代寫
  • ·COMP5328代做、代寫Python程序語言
  • ·代做48730-32548,、c/c++,Python程序設計代寫
  • ·代做SCI 3004、c++/Python程序設計代寫
  • ·代寫INF 1341 系統分析革新 代做python程序
  • ·CMP5321代做、代寫Python程序語言
  • ·MGMT20005代寫、c/c++,Python程序代做
  • · 代做BUSFIN 711、代寫Python程序語言
  • ·FINC5090代寫、代做Python程序設計
  • ·代寫ECON0013、代做Java/Python程序
  • 合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        免费不卡在线视频| 久久久久久97三级| 韩国av一区二区三区| 国产精品久久久久免费a∨| 欧美一二三区精品| 亚洲视频在线一区观看| 久热精品视频在线观看一区| 亚洲精选视频免费看| 另类亚洲自拍| 欧美午夜寂寞影院| 国产精品综合不卡av| 午夜精品福利一区二区三区av| 欧美精品久久久久a| 久久黄色级2电影| 91久久久一线二线三线品牌| 国产麻豆视频精品| 狠狠色狠狠色综合日日91app| 激情综合色综合久久综合| 中文在线资源观看视频网站免费不卡| 美玉足脚交一区二区三区图片| 欧美在线视频一区| 99热这里只有精品8| 久久久久久久成人| 欧美精品在线视频| 99re热精品| 欧美va天堂在线| 国产精品―色哟哟| 一区二区三区三区在线| 国产精品日韩一区二区三区| 亚洲福利视频二区| 精品51国产黑色丝袜高跟鞋| 亚洲欧美色一区| 久久国产精品免费一区| 国产精品一区久久久| 国产日韩精品在线观看| 国产欧美精品xxxx另类| 亚洲一区亚洲| 亚洲欧美日韩中文视频| 男人插女人欧美| 国产美女精品视频免费观看| 久久精品国产第一区二区三区| 在线精品视频在线观看高清| 亚洲午夜电影网| 亚洲大胆视频| 午夜欧美不卡精品aaaaa| 久久精品一本久久99精品| 亚洲精品欧洲| 亚洲第一综合天堂另类专| 国产日韩精品综合网站| 亚洲国产精品视频一区| 国内精品伊人久久久久av一坑| 亚洲图片欧美一区| 亚洲欧美日韩专区| 午夜一区二区三视频在线观看| 亚洲精品欧美在线| 亚洲精品日韩在线观看| 在线精品视频一区二区| 欧美国产精品中文字幕| 久久久久久久久久看片| 欧美一区1区三区3区公司| 国产美女精品免费电影| 欧美.日韩.国产.一区.二区| 国产婷婷色综合av蜜臀av| 99www免费人成精品| 国内成+人亚洲+欧美+综合在线| 99视频精品全国免费| 1000部精品久久久久久久久| 米奇777在线欧美播放| 亚洲欧美国产日韩中文字幕| 亚洲在线电影| 亚洲国产精品ⅴa在线观看| 亚洲看片网站| 黄色成人在线免费| 亚洲国产aⅴ天堂久久| 欧美激情第9页| 欧美在线免费一级片| 亚洲欧美日韩精品久久奇米色影视| 国产精品一区二区久久久久| 欧美不卡在线| 在线观看精品视频| 最新精品在线| 在线欧美视频| 久久最新视频| 欧美二区视频| 亚洲欧洲在线免费| 国产精品你懂的在线| 国产精品影片在线观看| 久久偷看各类wc女厕嘘嘘偷窃| 日韩视频一区| 欧美一级视频免费在线观看| 久久精品人人做人人爽| 亚洲视频精选在线| 国产精品啊v在线| 欧美国产日韩在线观看| 亚洲激情婷婷| 国产麻豆日韩| 亚洲狠狠丁香婷婷综合久久久| 一区二区三区日韩精品| 国产手机视频一区二区| 免费欧美视频| 国产精品久久久久久久久久尿| 伊人成人开心激情综合网| 久久国产精品网站| 狠狠爱www人成狠狠爱综合网| 欧美大尺度在线| 亚洲欧美日韩网| 久久久精品性| 欧美人妖在线观看| 狠狠狠色丁香婷婷综合久久五月| 欧美女同视频| 亚洲乱码精品一二三四区日韩在线| 久久漫画官网| 欧美日本一区二区高清播放视频| 欧美高清在线视频观看不卡| 亚洲精品一区二区三区福利| 欧美精品在线极品| 久久亚洲图片| 欧美理论大片| 久久久精品日韩欧美| 久热精品视频在线免费观看| 亚洲精品韩国| 国产精品色在线| 亚洲免费影视| 亚洲免费观看高清完整版在线观看熊| 欧美另类在线播放| 狠狠色狠狠色综合日日91app| 欧美电影在线免费观看网站| 亚洲精品护士| 亚洲电影下载| 激情视频一区| 亚洲欧美激情精品一区二区| 亚洲精品久久| 国产一区二区三区四区三区四| 国产精品日韩在线| 日韩视频一区二区三区| 亚洲男女毛片无遮挡| 国产精品综合| 一区二区三区免费在线观看| 国产伦精品一区二区三区免费| 99国产精品私拍| 国产丝袜一区二区| 在线看日韩欧美| 国产精品久久久久久久7电影| 在线观看91精品国产麻豆| 狠狠色狠狠色综合日日91app| 欧美亚洲日本网站| 欧美aⅴ一区二区三区视频| 亚洲福利在线看| 欧美国产欧美亚州国产日韩mv天天看完整| 一个人看的www久久| 午夜精品在线| 一区二区三区国产在线观看| 国产亚洲一区二区三区在线播放| 亚洲福利小视频| 篠田优中文在线播放第一区| 欧美中文字幕久久| 国产精品久久一卡二卡| 亚洲美女黄网| 国产性天天综合网| 99亚洲伊人久久精品影院红桃| 亚洲综合成人在线| 亚洲在线视频观看| 一区二区福利| 久久精品一区中文字幕|