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爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          一本久久a久久精品亚洲| 久久在线免费观看| 欧美精品激情在线观看| 黄网站色欧美视频| 欧美一区二区成人6969| 欧美日韩免费在线观看| 亚洲精品国偷自产在线99热| 欧美91福利在线观看| 一区二区三区在线免费视频| 久久激情网站| 国产日韩在线一区| 久久av一区二区三区漫画| 国产精品自在线| 亚洲欧美综合v| 国产精品日日摸夜夜添夜夜av | 久久综合中文字幕| 国外视频精品毛片| 看欧美日韩国产| 亚洲国产精品一区二区www| 久久免费视频一区| 久久福利视频导航| 亚洲福利在线看| 在线精品亚洲一区二区| 在线观看欧美日韩| 伊人久久婷婷色综合98网| 黄色在线成人| 亚洲国产精品成人| 亚洲国产欧美另类丝袜| 最新国产精品拍自在线播放| 亚洲国产免费看| 亚洲乱码国产乱码精品精98午夜 | 久久久久国产精品厨房| 久久国产精品一区二区三区四区 | 国内在线观看一区二区三区| 国产欧美在线看| 国内精品伊人久久久久av一坑| 国产欧美日韩在线| 国产在线欧美| 亚洲区在线播放| 一区二区三区视频在线| 亚洲欧美电影在线观看| 欧美一区二区视频网站| 老司机免费视频一区二区三区 | 欧美大片免费观看| 欧美日韩精品在线观看| 国产精品欧美日韩一区二区| 国产又爽又黄的激情精品视频| 一区二区三区在线看| 亚洲人成在线观看一区二区 | 欧美日本一区二区视频在线观看| 欧美天天视频| 国产亚洲欧美激情| 亚洲欧洲精品一区| 亚洲欧美日韩精品久久久| 久久久久国产免费免费| 欧美日韩二区三区| 好看的日韩视频| 一区二区三区精品国产| 久久久久综合网| 欧美色欧美亚洲高清在线视频| 久久久久久亚洲精品杨幂换脸 | 日韩午夜av电影| 国产午夜精品理论片a级大结局| 欧美大胆a视频| 久久精品国产综合精品| 中国成人亚色综合网站| 亚洲国产一二三| 国产亚洲美州欧州综合国| 欧美精品v国产精品v日韩精品| 欧美一级久久| 一区二区三区.www| 91久久精品国产91性色| 好看的亚洲午夜视频在线| 国产精品久99| 欧美xxx在线观看| 欧美三级电影精品| 亚洲精品日日夜夜| 欧美jizz19hd性欧美| 国产一区二区三区久久| 亚洲欧美精品在线| 欧美日韩国产一区精品一区| 亚洲国产裸拍裸体视频在线观看乱了| 欧美亚洲一区在线| 国产精品夫妻自拍| 亚洲视频自拍偷拍| 欧美四级在线| 99这里有精品| 欧美久久婷婷综合色| 亚洲二区三区四区| 麻豆成人综合网| 1000部国产精品成人观看| 久久人人97超碰国产公开结果| 国产欧美欧美| 久久爱另类一区二区小说| 国产精品一区视频网站| 亚洲欧美中文另类| 国产欧美一二三区| 久久精品成人| 在线视频观看日韩| 欧美国产激情二区三区| 亚洲精品久久久一区二区三区| 欧美成人精品影院| 亚洲黄色毛片| 欧美区高清在线| 99视频一区二区三区| 欧美视频一区二区三区在线观看| 中文在线资源观看网站视频免费不卡| 欧美三级网址| 午夜免费久久久久| 激情久久综艺| 欧美日韩八区| 性欧美1819sex性高清| 狠狠爱综合网| 欧美激情亚洲精品| 在线观看不卡| 一区二区三区 在线观看视| 另类国产ts人妖高潮视频| 久久亚洲图片| 欧美韩国日本综合| 国产区二精品视| 久久精品盗摄| 亚洲日本理论电影| 国产精品性做久久久久久| 久久久精品性| 国产精品www色诱视频| 欧美色欧美亚洲高清在线视频| 国产精品自在线| 在线观看中文字幕不卡| 日韩亚洲一区在线播放| 亚洲欧美日韩国产成人精品影院| 久久精品午夜| 欧美日韩精品三区| 国产亚洲女人久久久久毛片| 亚洲精品1234| 午夜欧美理论片| 欧美精品国产精品| 国产亚洲美州欧州综合国| 亚洲人成网站999久久久综合| 亚洲一区国产一区| 免费在线视频一区| 国产精品美女一区二区| 亚洲激情在线观看| 亚洲女人天堂成人av在线| 欧美成人中文字幕| 国产在线视频欧美一区二区三区| 激情综合电影网| 国产精品成人播放| 欧美激情一级片一区二区| 久久久久免费视频| 欧美在线视频a| 午夜精品久久久久久久久久久| 亚洲日本国产| 亚洲国产精品免费| 红桃视频国产精品| 国产日韩欧美一区在线| 国产精品福利在线观看网址| 欧美精品福利| 欧美大片国产精品| 免费观看亚洲视频大全| 久久综合久久美利坚合众国| 久久精品视频导航| 久久久精品日韩欧美| 欧美在线一二三| 久久精品国产综合| 久久精彩免费视频| 久久精品人人做人人爽| 欧美在线播放一区| 久久国产精品72免费观看| 欧美亚洲在线| 久久成人18免费观看| 久久福利电影| 美女精品自拍一二三四| 久热综合在线亚洲精品| 久久午夜电影网| 久久伊人一区二区| 欧美精品1区2区| 欧美性色aⅴ视频一区日韩精品| 欧美日韩精品免费看| 欧美视频在线免费| 国产婷婷成人久久av免费高清| 国产一区二区三区丝袜| ●精品国产综合乱码久久久久| 亚洲人成艺术| 亚洲一区二区三区免费观看| 欧美亚洲视频在线观看| 久久久中精品2020中文| 欧美成人综合网站| 国产精品劲爆视频| 国产小视频国产精品| 一区免费观看视频| 夜夜嗨一区二区三区| 香蕉免费一区二区三区在线观看| 久久福利毛片| 欧美精品v日韩精品v国产精品| 国产精品久久久久久模特| 国产香蕉久久精品综合网| 亚洲日本电影在线| 亚洲欧洲av一区二区三区久久| 久久亚洲春色中文字幕| 欧美日韩在线另类|