99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

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

時(shí)間:2024-09-27  來源:合肥網(wǎng)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




 

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

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評 開團(tuán)工具
    出評 開團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場巴士4號線
    合肥機(jī)場巴士4號線
    合肥機(jī)場巴士3號線
    合肥機(jī)場巴士3號線
    合肥機(jī)場巴士2號線
    合肥機(jī)場巴士2號線
    合肥機(jī)場巴士1號線
    合肥機(jī)場巴士1號線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                日本久久一区二区| 国内成人免费视频| 欧美一二三四区在线| 在线中文字幕一区二区| 97久久人人超碰| 在线观看欧美黄色| 欧美老肥妇做.爰bbww视频| 欧美情侣在线播放| 日韩一级大片在线| 久久久99精品久久| 综合欧美一区二区三区| 亚洲一区二区免费视频| 免费观看在线综合色| 福利一区在线观看| 色婷婷精品久久二区二区蜜臀av| 精品污污网站免费看| 欧美一区日韩一区| 亚洲免费伊人电影| 精品一区二区影视| 色哦色哦哦色天天综合| 国产亲近乱来精品视频| 丝袜亚洲另类欧美综合| 不卡的看片网站| 51精品秘密在线观看| 中文字幕在线观看不卡| 日本不卡一区二区三区| 色综合欧美在线视频区| 国产日韩欧美不卡| 无码av中文一区二区三区桃花岛| 91猫先生在线| 国产午夜三级一区二区三| 久久国产剧场电影| 精品视频999| 亚洲一线二线三线视频| 91亚洲精品乱码久久久久久蜜桃| 久久久精品影视| 国产在线不卡一区| 久久国产精品99久久久久久老狼 | 日韩视频一区二区三区| 日本一区二区三区四区在线视频 | 国产在线麻豆精品观看| 91香蕉视频在线| 久久综合久久综合九色| 91麻豆精品国产91久久久久久久久 | 99精品视频中文字幕| 日韩精品专区在线| 激情伊人五月天久久综合| 欧美在线一区二区| 黑人巨大精品欧美黑白配亚洲| 久久夜色精品国产噜噜av | 日韩欧美中文字幕制服| 一区二区三区高清| 亚洲乱码国产乱码精品精小说 | 精品日韩99亚洲| 黑人巨大精品欧美黑白配亚洲| 久久久国产午夜精品| av亚洲精华国产精华精| 亚洲国产一区二区视频| 国产亚洲成av人在线观看导航| 在线观看视频91| 亚洲丝袜制服诱惑| 精品国产乱码久久久久久闺蜜| 成人久久久精品乱码一区二区三区| 亚洲综合色在线| 久久嫩草精品久久久久| 91国在线观看| 国产精品综合一区二区| 亚洲综合视频在线观看| 国产欧美一区二区精品久导航| 色视频一区二区| 99久久婷婷国产综合精品电影| 国产在线不卡一区| 成人在线综合网站| 国产91清纯白嫩初高中在线观看| 麻豆91在线播放免费| 国产综合色在线| 九九**精品视频免费播放| 亚洲成人av电影| 午夜影视日本亚洲欧洲精品| 亚洲免费在线播放| 亚洲国产精品久久不卡毛片| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 久久久噜噜噜久久中文字幕色伊伊 | 欧美性xxxxx极品少妇| 成人av电影免费在线播放| 成人午夜碰碰视频| 色婷婷综合中文久久一本| 欧美久久高跟鞋激| 日韩欧美亚洲国产精品字幕久久久| 91麻豆精品国产91久久久久久| 一区二区三区高清不卡| 91麻豆精品国产91久久久更新时间 | 欧美日韩一区二区在线观看视频| 国产白丝网站精品污在线入口| 国产**成人网毛片九色| 色噜噜狠狠色综合欧洲selulu| 91国偷自产一区二区开放时间| 7777精品伊人久久久大香线蕉经典版下载| 欧美精品xxxxbbbb| 国产性色一区二区| 另类调教123区| 91丨porny丨首页| 欧美一区二区黄| 亚洲欧美激情小说另类| 国产高清无密码一区二区三区| 色综合久久久网| 欧美激情综合网| 日韩不卡免费视频| 在线观看91视频| 亚洲国产精品成人综合| 福利视频网站一区二区三区| 欧美二区三区91| 亚洲国产日韩一级| 色综合天天综合狠狠| 久久久久久久国产精品影院| 久久精品二区亚洲w码| 欧美日韩精品一区二区三区 | av高清久久久| 国产精品久久久久影院亚瑟| 不卡av免费在线观看| 国产精品免费观看视频| 国产一区二区中文字幕| 久久一二三国产| 国产成人a级片| 精品乱人伦一区二区三区| 亚洲国产精品尤物yw在线观看| 91久久精品日日躁夜夜躁欧美| 亚洲精品免费播放| 欧美日韩精品是欧美日韩精品| 日韩精品国产精品| 国产亚洲成aⅴ人片在线观看| 高清不卡一区二区在线| 亚洲自拍欧美精品| 欧美一区二区在线不卡| 不卡的电影网站| 免费高清在线视频一区·| 精品国产一区二区三区久久影院| 成人午夜精品在线| 日本亚洲三级在线| 综合色中文字幕| 久久久91精品国产一区二区三区| 色网综合在线观看| 激情六月婷婷久久| 亚洲午夜电影在线观看| 久久综合久久综合久久综合| 在线观看一区不卡| 岛国一区二区在线观看| 九九精品一区二区| 另类小说图片综合网| 日韩激情视频在线观看| 欧美一区二区三区系列电影| 成人一区二区三区视频在线观看| 一区二区三区中文字幕| 国产精品日产欧美久久久久| 日韩一区二区在线观看视频 | 舔着乳尖日韩一区| 亚洲人精品一区| 亚洲色图欧美偷拍| 国产精品国模大尺度视频| 亚洲二区在线视频| 亚洲国产日韩a在线播放| 亚洲精品国产第一综合99久久 | 久久99热99| 韩日精品视频一区| 成人国产在线观看| 欧美日韩大陆在线| 日韩亚洲欧美成人一区| 久久亚洲精品国产精品紫薇| 国产精品久久久99| 亚洲黄色片在线观看| 蜜芽一区二区三区| 国产真实乱对白精彩久久| 91网站最新地址| 日韩一级二级三级精品视频| 亚洲国产精品v| 丝袜美腿成人在线| 日韩和欧美一区二区三区| 调教+趴+乳夹+国产+精品| 丰满亚洲少妇av| 日韩一级精品视频在线观看| 亚洲三级视频在线观看| 国产传媒日韩欧美成人| 91.成人天堂一区| 亚洲综合男人的天堂| 国产99一区视频免费| 欧美日韩高清在线| 亚洲国产精品二十页| 国产美女在线精品| 91精品免费观看| 亚洲制服丝袜一区| 91啪亚洲精品| 欧美激情一区在线| 国产精品中文字幕日韩精品| 欧美人妇做爰xxxⅹ性高电影| 亚洲美女视频一区| 91蜜桃在线观看| 亚洲国产中文字幕在线视频综合| 成人午夜在线免费| 久久久久久久综合色一本| 国产精品综合二区|