Assignment Chef icon Assignment Chef

Browse assignments

Assignment catalog

33,401 assignments available

[SOLVED] ELEC9703 Microsystems Design Technology Term 1 2025 Assignment 1SPSS

ELEC9703 Microsystems Design &Technology Term 1, 2025 Assignment 1 Due on 11:59pm 28th of March 2025 Question 1 (50 marks) The fabrication of a pressure sensor requires the fabrication of a 20µm membrane. In using a 400mm diameter orientation silicon wafers, the average thickness of a batch of wafers is 600µm with a variation of ±20µm. a) Suppose you decided to use TMAH (25%) as an anisotropic wet etchant at 70°C to form. the pressure sensor with a 400µm x 400µm square diaphragm of 20µm thickness. Anisotropic etching characteristics of TMAH can be obtained from the Prof. K Sato’s paper: “Anisotropic etching rates of single-crystal silicon for TMAH water solution as a function of crystallographic orientation”, Sensors and Actuators A: Physical; Vol.73, Issue 1-2, 1999, pp131-137. (i) Assume you decided to achieve a 20µm thick diaphragm by timed etch. For a plain double side polished 600µm thick 400mm orientation silicon wafer, what is the required mask size opening to be patterned on the backside of the wafer, to achieve the desired pressure sensor diaphragm size, and what is the required etching time? (20 marks) (ii) With this etch time, what is the range of the final diaphragm sizes you will obtain over a batch of such wafers? (5 marks) (iii) Suppose that during the photolithography step, the mask was misaligned to the major flat by 1.5°. What will be the final diaphragm thickness and size if the same etch time obtained in part (i) was used. State assumptions made. Provide a sketch of the relation between the mask and the final opening on the backside of the wafer. (15 marks) (b) Suggest what approach you would like to adopt so that repeatable diaphragm thickness from one process run to another can be achieved. Give a brief description of the process steps.  (10 marks) Question 2 (50 marks) Below in Figure 1(a) and (b) are illustrations of the top and cross-sectional views of the analogue device accelerometer. The accelerometer has a shuttle mass (1) suspended by two springs (2) that are anchored (3) to the substrate at their other ends, two sets of interdigitated fingers with one end attached to the shuttle mass and another one anchored to the substrate, and electrical connectivity to the shuttle mass (Vx) and the anchored fingers of the two sets of the interdigitated fingers (Vs and -Vs). C’1 and C’2 are the capacitances defined by the overlapping fingers in each of the two sets of the interdigitated fingers and are of the same value when no acceleration is measured. When the device is subjected to an acceleration, the shuttle mass will experience a force and is displaced to increase the distance (decrease capacitance, C’1) between the overlapping fingers of one set of the interdigitated fingers and decreases (increase capacitance, C’2) for the other. The difference in the capacitances, which is proportional to the acceleration, produces an output voltage Vx that can be further processed. The accelerometer is to be fabricated using POLYMUMPS process. POLYMUMPS is 3 structural polysilicon layers (POLY0, POLY1, and POLY2) with 2 sacrificial SiO2 layers and one metal layer (Au/Cr). The polysilicon layers are deposited by LPCVD process. Note that there is LPCVD Si3N4 isolation layer between the substrate and other deposited layer. (i) Which layers of the three structural polysilicon layers (POLY0, POLY1 and POLY2) do you use to form. each component of the accelerometer? The shuttle mass, the interdigitated fingers, the anchors, and metal pads (10 marks) (ii) Describe the possible fabrication process steps to realise the accelerometer. You may use figure 2(b) to illustrate each fabrication step. Your answer for each step should be as detailed as possible. For example, is etching step dry (plasma) or wet? What etching recipe would you possibly use? (30 marks) (iii) What is the reason for having holes on the shuttle mass? Is that necessary? (5 marks) (iv) The accelerometer operates in vacuum. Describe the possible additional fabrication processing steps required to achieve this. (5 marks) (1) Shuttle mass; (2) Spring; (3) Anchor; (4) Metal pads; (5) Interdigitated fingers (a) (b) Figure 1: (a) top; (b) cross-sectional view of the accelerometer.

$25.00 View

[SOLVED] CS 168 Spring 2025 Project 3 Transport

CS 168 Spring 2025 Project 3: Transport In this project, you will implement a subset of the TCP protocol. Your implementation will provide reliability, though it wonʼt include congestion control. Lectures needed for this project: Lecture 11 (Reliability), 12 (TCP Implementation). You can work on this project alone, or with one partner. You can keep the same partner from an earlire project, or choose a different partner. Reminder: Our course policies page has a collaboration policy that you must follow. Setup Operating System Installation This project has been tested to work on Linux and Mac. If youʼre on Windows, we recommend using WSL. Python Installation This project has been tested to work on Python 3.7. (It probably works on newer versions of Python as well, but use at your own risk.) If you run python3 --version or python --version in your terminal and you see output of the form. Python 3.7.*, youʼre all set. Starter Code Download a copy of the starter code here. In your terminal, use cd to navigate to the cs168-sp25-proj3-transport/ext/cs168p2 directory. All of the Python commands should be run from this directory. To check that your setup works, in your terminal, run: python ../../pox.py config=tests/sanity_test.cfg If you see this message, everything should be set up correctly: [test] [00:00:02] All checks passed, test PASSED You should only edit ext/cs168p2/student_socket.py. There are comments clearly indicating the places where you should fill in code. Guidelines: Donʼt modify any other files. Donʼt add any new files. Donʼt add any imports. Donʼt edit any code outside the sections indicated by the comments. Donʼt add any hard-coded global variables. Adding helper methods is fine. In general, if we havenʼt told you to use something, you probably donʼt need it. Our goal is not to trick you! New Spec Note: This spec has been rewritten for Fall 2024 to be clearer and provide a few extra hints. It may contain bugs. If you would like to work off the previous version of the spec, you can find it here. Project Overview This project is split into 9 stages. In Project 3A, youʼll need to complete Stages 1–5. In Project 3B, youʼll need to complete Stages 6–9. Each stage has its own unit tests, provided to you locally. Your grade will be determined only by these unit tests (no hidden tests). To run a unit test, navigate to cs168-sp25-proj3-transport/ext/cs168p2, and run one of these commands, replacing 5 with the number of the stage you want to test: python autograder.py s5 # Runs unit tests for Stage 5. python autograder.py all # Runs all unit tests. python autograder.py all 5 # Runs all unit tests up to and including Stage 5. If a test fails, youʼll see some output like this: test_s1_t1 (__main__.test_s1_t1.test_s1_t1) ... Running test: ./tests/s1_t1.cfg Tracefile: ./trace/s1_t1/2024-08-22T16:09:52.593234 ../../pox.py config=./tests/s1_t1.cfg tcpip.pcap --node=r1 --no-tx --filename=./trace/s1_t1/20 FAIL To see nicely-formatted output for that specific test, take the last line, just before the “FAIL,” drop the --filename argument, and run that command in your terminal: ../../pox.py config=./tests/s1_t1.cfg tcpip.pcap --node=r1 --no-tx Code Overview You will be implementing the StudentUSocket class in student_socket.py, which represents a TCP socket. student_socket.py also contains other useful methods, which weʼll describe below. Modular Arithmetic Sequence numbers are 32 bits long, and they can wrap around (e.g. 0xFFFFFFFF + 1 = 0x00000000). Whenever you perform. arithmetic operations on sequence numbers, use these operators: State The instance variable self.state records the state of the current TCP connection. self.state is always assigned to one of the values in this list: [CLOSED, LISTEN, SYN_RECEIVED, ESTABLISHED, SYN_SENT, FIN_WAIT_1, FIN_WAIT_2, CLOSING, TIME_WA Weʼll describe more details about each state as they come up in the spec. Send Sequence Space: TXControlBlock The instance variable self.tx_data is a byte array representing what youʼre sending. The user will append bytes to the back of this array, and you will remove bytes from the front of this array as you send them out. The instance variable self.snd is a TXControlBlock object, which has information about the outgoing bytestream that you are sending. The TXControlBlock object has the following relevant instance variables: self.snd.iss: Your initial sequence number. self.snd.una: The oldest unacknowledged sequence number that you sent. self.snd.nxt: The next sequence number you should send. self.snd.wnd: The current size of your send window, determined by how much buffer space the other side (recipient) has left. This diagram shows the bytestream that you are sending and what the instance variables represent: Receive Sequence Space: RXControlBlock The instance variable self.rx_data is a byte array representing what youʼre receiving. As you receive packets, you should append their payloads (in the correct order) to this byte array so that the user can read them. The instance variable self.rcv is a RXControlBlock object, which has information about the incoming bytestream that you are receiving. The RXControlBlock object has the following relevant instance variables: self.rcv.nxt: The next sequence number you expect to receive. self.rcv.wnd: The current size of your receive window, determined by how much buffer space you have left. This diagram shows the bytestream that you are sending and what the instance variables represent: Receiving Incoming Segments The packets you send and receive are TCP/IP packets. If you receive an IP packet p, you can extract the TCP header and payload like this: seg = p.tcp If you receive a TCP segment seg, you can extract these fields from its header: seg.seq: The sequence number. seg.ack: The ack number. seg.win: The advertised window (how much buffer space left on the other side). seg.ACK: Whether this segment has the ACK flag set (Boolean value). seg.SYN: Whether this segment has the SYN flag set (Boolean value). seg.FIN: Whether this segment has the FIN flag set (Boolean value). If you receive a TCP segment seg, you can extract the payload like this: seg.payload # The payload. len(seg.payload) # Length of the payload. Sending Outgoing Segments To create a new packet, you can use the function self.new_packet(ack=True, data=None, syn=False), which takes in the following arguments: ack: Whether to set the ACK flag. True by default. data: The TCP payload to send. None by default. syn: Whether to set the SYN flag. False by default.

$25.00 View

[SOLVED] ISYS90039c/cJava

ISYS90039 Digital Innovation & TechnopreneurshipSemester 1, 2025Assignment 1 - Individual Report InstructionOverviewDue Date: Friday 11th April @ 11:59 pm (Week 6)Weight: 25%Length: Maximum of 2,000 words in total (this is a strict upper limit); the wordcount includes the executive summary but does not include references,citations, tables, or headings.Type: Individual ReportInstructionsGeneral Assignment Details: Learning Outcomes: This assignment addresses Intended Learning Outcomes(ILOs) 1, 2, and 5. Assessment Requirements: Detailed in Assignment 1 – Case Scenario(available on Canvas > Assignments > Assignment 1). Submission Format: WORD or PDF file. Late Submissions: Penalised by 10% of the total mark for each day past thedue date. Requests for Extensions: must be submitted via email to both SubjectCoordinators (cc'ing both) by 11:59 PM on Thursday, 10th April. Questions Regarding Requirements: Direct inquiries to Subject Coordinatorsor the Canvas Discussion Forum to ensure a standardised response foreveryone. Plagiarism: Any instances identified by Turnitin that are not properlyacknowledged and cited will be handled in accordance with the University ofMelbourne’s Academic Integrity Policy. AI Declaration: If AI tools were used in any part of the analysis, must completethe AI Declaration Template.Your report should: Executive Summary: Include a concise overview (counted in the word limit). Intended Audience: Ensure the content is relevant and appropriately targeted. Critical Analysis: Demonstrate original thinking and analytical depth. Logical Argument: Develop a well-structured argument based on the casescenario’s context. Research-Based Explanations: Support your points with high-quality research. Visual Aids: Use images, tables, and figures effectively where appropriate. The University of Melbourne Explicit Assumptions: Clearly state any relevant assumptions (if applicable).Your writing should: Be concise and coherent, making effective use of the word count. Be well-structured, following a logical order with smooth content flow. Be proofread and spell-checked to maintain professionalism. Use grammarand spelling tools if needed. Use APA 7 format for citations and references. Only include references from July 2018 onwards (class readings and materialsare exempt).Note on Report Structure: There is no required template for this report. A table of contents is not necessary, but a cover page and reference listare essential. Include your Student ID in the header and page numbers in the footer. Failure to meet these presentation requirements will result in mark deductionsunder the ‘Overall Report Quality’ criteria.

$25.00 View

[SOLVED] COMP4033 c/cPython

COMP4033 Computer graphicsAssignment 2– Writing and Code Assignment (Due on 13:00pm April 7th)Part I: Questions ()1. (12 marks) Give a sequence of 4x4 matrices that transforms the parallelogram in the left figure to the unit square in the right. Write down the name of the transformation for each matrix. Also write down the transformation matrix of each step.2. (10 marks)The following converts an oblique frustum into an orthogonal one where the z-axis coincides with the frustum’s central line. Note that xa = (xr-xl)/2 and ya = (yt-yb)/2. Give the matrix of the transformation.3. (8 marks)Consider the figure below. i is the direction of the incident light, n is the normal of the surface at S and r is the direction of the reflection. All of them are unit vectors. Derive a formula for r in terms of i and n. 4. (12 points)(a) Derive the 4x4 homogenous matrix representation of a rotation transformation in 3D space of 30 degree about the directed line through the origin with direction vector (0, 1,1). (b) What is the image of point under the transformation in (a)?5. (15 points) (a) Given a triangle △ABC in 2D plane, show that any point P in the plane can be represented uniquely as show that , with .(b) P is inside △ABC or on one of its sides if and only if ,,are all nonnegative. (c) Given a triangle △ABC in 2D plane with , , and , determine if the point is inside △ABC by computing the barycentric coordinates of P with respect to △ABC.6. (4 marks)The following code is written to draw the outer surface of a cylinder as a quad-strip but nothing is seen on the screen. Assuming that lighting parameters and reflectance are properly set, explain why and suggest a remedy.7. (15 points)Consider the function sphere() that draws the outer surface of a unit sphere. Assume that a cylindrical map of the earth has been set up as the current texture and lighting is enabled. Suggest modifications on the function for supporting lighting calculation and the mapping of the texture on the sphere.Part II: Code and implementation (170 marks in total)Phase I:Reuse the updated Assign0 to generate a robot. You are expected to Use spheres (5 marks), cylinders (5 marks), cubes to draw your robot. It is composed of 2 arms, 2 legs, 1 head, 1 body. Note: when you use the formulas shown on ppt and below to implement the spheres (25 marks) and cylinders (25 marks), you can get more marks as indicated in brackets.And you can animate and move the robot. You can make your robot both walk (10 marks) and run (10 marks). Note: you are expected to set the rotation angles between joint of arm or legs.An additional point light source is expected to be added which moves together with the robot (10 marks) . Therefore, there are two light sources. One is the one implemented with the code from the ppt (10 marks). Another is your new light source.Please make sure that the correct normal (10 marks) are to be calculated in your code. This is to ensure the lighting calculation.Note: The parametric function to implement a sphere can be founded in ppt. The parametric function to implement a cylinder can be shown asx = r*cos(2pi*u),y = r*sin(2pi*u),z = v/h,which maps rectangle in u,v space to cylinder of radius r and height h in world coordinates. For texture mapping, the following formulas = u,t = v,helps to map from u, v space to texture space. Note that in the GLSL implementation, you need to convert a quadrilateral into two triangles (10 marks) as followsPhase II:By reusing the code of implementing robot, you are now trying to add texture mapping on the surface of your object. You are expected toAdd two ball whose surfaces are composed of triangles (10 marks).Apply football_texture.jpg as the texture image on the surface of one ball (20 marks). Apply earth_texture.jpg as the texture image on the surface of another ball (20 marks).

$25.00 View

[SOLVED] BUSM098 Research Methods for Marketing 2024/2025

BUSM098 Research Methods for Marketing 2024/2025 Module Level Learning Outcomes to be assessed (Reference to Module Proposal Form) No Module Learning Outcome Description 1 A1 Apply knowledge of the range of both qualitative and quantitative research techniques and a capacity for independently evaluating their respective strengths and weaknesses in addressing particular kinds of research question. 2 A2 Acquire the learning of necessary skills to interpret and analyse scientific data 3 B1 Analyze research-based concepts drawn from marketing and related disciplines and the contribution of these concepts to the knowledge base of marketing practice 4 B2 Conduct projects using cross-disciplinary theories 5 B3 Develop new creative ways of thinking about marketing through research 6 C1 Develop effective academic writing skills 7 C2 Perform. analyses using appropriate software programs and evaluate and report the results Assessment instructions for students (as per QMplus ‘Assessment Information’ tab) Performance in the summative assessment for this module is judged against the following criteria: • Relevance to question(s) •    Organisation, structure and presentation • Depth of understanding • Review of literature • Proposed appropriate research method(s) with clear justification • Use of sources and referencing Assessment Type Weighting Details Submission date Research Proposal 100% 3,000 words /04/2025, 3pm (via QMplus module page) Students should submit the research proposal as a Microsoft Word document online via QMplus. Research proposal submissions received after the deadline will be subject to a late penalty. Please refer to the PG Student Handbook for further details. Additional information/breakdown regarding assessment details: The assessment for this module is a written research proposal. The research proposal counts for 100% of your mark on this module. You may use the topic of your research proposal also for your dissertation. However, you would need to ensure that you are not ‘self-plagiarising’, i.e., you would need to paraphrase, develop and expand all sections of your research proposal that you also use in your dissertation. The word count for this assessment is 3,000 words. This does not include reference lists/bibliographies, nor appendices. Marks may be deducted if you overshoot the word limit. The stated word count may be exceeded by a maximum of 10% (300 words). Research proposal topic: Choose a topic of your own choice that relates to the MARKETING discipline. Your proposal should contain: a) an introduction discussing the relevant background, problem definition and research question(s); b) a literature review identifying critical theories and existing knowledge and how your proposal relates to existing research; c) a methodology section proposing a research design and specific analysis methods to answer the question(s) identified. The choice of the topic should be driven primarily by your interest, and it does not affect the marking of the assessment. The specific steps you should consider in your proposal are as follows: • Introduction: o Identify relevant and important research question(s) that contribute / innovate / critically reflect on the specific topic chosen. o Critically discuss the research problem and research question(s) in the context of existing research demonstrating the importance of the proposed study. • Literature review: o Thoroughly review key existing texts in the specific field of research. o Critically discuss and examine the literature presented. o Examine how the proposal relates to existing research. o Discuss grounding/foundational theories relating to your topic/underpinning your proposal. • Methodology: o Propose a research design, a data collection design and an analysis design able to tackle the research question(s) identified. o Describe thoroughly the method(s) proposed and how it / they will be able to yield the expected results and answer the research question(s). o Propose a reasonable timetable for the execution of the study. The components identified above will be assessed when marking the research proposals and therefore constitute the key marking criteria for the assessment.

$25.00 View

[SOLVED] MLE5247 AY24/25 SEM 2 Assignment 2

MLE5247 AY24/25 SEM 2 Assignment 2 You have two options to choose from. Please pick the one that interests you the most. Each earns a maximum of 35 marks. Option 1: Building and Implementing a Python Code Task: Use a neural network - such as a shallow MLP, a GNN, or even a GAN - to predict the band gap of a compound based on descriptors like composition or physical properties (e.g., density, formation energy). Steps to Consider: •     You may use the materials dataset provided with this assignment. •     Feel free to modify the dataset if needed (e.g., by adding features, including additional data, or selecting a subset). •     You  can use AI tools  (e.g., ChatGPT,  DeepSeek, Gemini, Co-pilot) to  help generate, debug, or improve your code. However, please acknowledge their use,  and  remember  that  these  tools  can  make  mistakes  or   produce incomplete code. You’re responsible for verifying that each step aligns with your objectives. •     Train/test your network on the band gap regression problem. •     Visualize the distribution of predicted vs. actual band gaps, and discuss any limitations. Important Note: Our  main  goal  here  is  not  to  produce  perfect  code  or  a  fool  proof  band gap predictor.  Your  strength  lies  in  your  materials  science  expertise,  so  focus  on applying your domain knowledge to design a model that’s appropriate for this task. Treat AI tools as a technical assistant that may not fully understand what you are trying to achieve. Comments in Your Code: •     Include   thought-process   comments   explaining  why  you   chose  certain parameters or models, any optimization considerations and other decisions, also shortcomings or how you might improve the approach further. Evaluation: •     Your reasoning and logic will be the primary basis for evaluation, so ensure your  ideas  and  insights  are  clearly  expressed  in  your  comments  and discussion. o  Logical reasoning (~ 20 marks) o  Accuracy of code & implementation (~10 marks) o  Output (~5 marks) Option 2: AlphaFold Background: AlphaFold - particularly AlphaFold2 from DeepMind - is a ground-breaking deep learning system that predicts a protein’s 3D structure from its amino acid sequence. It gained major recognition in 2020–2021 by outperforming all previous methods in the CASP (Critical Assessment of protein Structure Prediction) competition and was honoured with the 2024 Nobel Prize in Chemistry. Task: Conduct a literature survey to explore how AlphaFold actually works - both the ML- based and non-ML techniques that helped crack the longstanding protein folding challenge. Then, compile a report that: •     Explains the problem of protein folding and the core challenges •     Outlines how AlphaFold overcame these challenges •     Breaks down the computation methods / process •     Uses pictorials, graphs, or other visuals to clarify the mechanism You may use AI tools to aid your research, but do not copy text directly from them and acknowledge their use. Remember, AI outputs can sometimes be inaccurate, so please double-check any information you include. Evaluation: •   There’s no fixed page limit, but as a rough guideline, 3 - 4 pages should be sufficient if you effectively capture and condense the model’s complexity (which will be challenging!). However, evaluation will focus on the depth of your  insight  into  the  inner  workings  of  the  model(s)  and  your  ability  to explain or illustrate them in a meaningful, clear way. o Background (~5 marks) o Motivations for and behind computational approaches (~5 – 10 marks) o Insight into AlphaFold (~25 – 20 marks) 

$25.00 View

[SOLVED] ENGY7000 Sustainable Energy Technologies and Supply Systems 2025

Sustainable Energy Technologies and Supply Systems (ENGY7000) TASK: Individual assessment-Solar COURSE: ENGY7000 DATE OF ISSUE: Wednesday 10th March 2025 DUE DATE: Friday 28th March 2025 TASK VALUE: 30% of the course CONTEXT: In this individual assignment (with the option to consult and discuss in small groups), you will integrate and apply the knowledge gained throughout the course to carry out a design exercise or feasibility study focusing on photovoltaic technology. You will determine the optimum tilt angle for solar modules at any location in the world and evaluate different module technologies based on performance under site-specific conditions, such as temperature variations, irradiance, and local climate factors. By engaging in this task, you will enhance your skills in research, modeling, and critical thinking. You will learn to interpret technical data and performance parameters, assess the impact of environmental conditions on power output. Ultimately, this exercise aims to prepare you to make informed, evidence-based decisions about PV system design and module selection in real-world contexts ASSESSMENT OUTCOMES: The course learning outcomes that will be assessed in this task include: • Ability to explain the basic components and main performance parameters of photovoltaic systems, particularly in relation to optimum tilt angles and site-specific conditions. • Ability to apply this knowledge of module performance (including nominal operating cell temperature and irradiance effects) to predict behavior. under various real-world conditions. • Ability to appraise and select photovoltaic systems in detail, considering temperature-corrected power outputs and supplier/product comparisons. • Ability to critically interpret modeling results, with emphasis on understanding uncertainties, assumptions, and limitations in performance estimations. ASSESMENT GUIDELINES: In this exercise you will be assessed on your ability to: • Apply, integrate and synthesize your knowledge of photovoltaic systems gained from the course material • Carry out simplified modelling of photovoltaic systems using appropriate software and web-based resources • Critically evaluate the modelled systems, state the uncertainties and assumptions in the modelling. Discuss in brief their implication on the validity of the results. MARKING CRITERIA: In this task you will be marked on your ability to: • Correctly use the equations and data supplied and accurately interpret instructions to produce valid results. • Draw valid conclusions by applying knowledge gained in the course, relating it to your findings, and demonstrating awareness of the limitations and potential errors in simulations. • Present results clearly and concisely, using appropriate mathematical formulas INSTRUCTIONS FOR SUBMISSION: Submit your work in one excel file Text should be 12-point size TASK DESCRIPTION: QUESTION 1: (20 marks) (a) Consider two locations: (1) UQ St Lucia Campus (27.4937° S, 153.0067° E) and (2) Another location of your choice (e.g., your home, workplace, or any other site of interest). Using the resources or equations provided below, estimate the optimum tilt angle (β) for solar panels in each location. (5 marks) [Resources/equations: At solar noon in southern hemisphere: α = 90 + ɸ − δ At solar noon in Northern hemisphere: α = 90 − ɸ + δ Where: δ is the declination angle (degrees); α is the Altitude (degrees); ɸ is the Latitude (degrees); and β is the solar panel/module tilt angle to the horizontal (degrees) Annual solar tables to obtain the altitude angle at noon: https://andrewmarsh.com/apps/staging/sunpath3d.html] (b) Compare your estimated optimum tilt angles (β) with the latitudes of the two locations. What relationship do you observe between latitude and the optimum tilt angle? (2 marks) (c) Use the ModuleSIM Excel file to examine how the energy output of the modules varies throughout the year for different tilt angles near the estimated optimum tilt angle (β) for UQ St Lucia Campus in Question (1a) above. For example, if your calculated optimum tilt angle is 10°, simulate module performance at: 5°, 6°, 7°, 8°, 9°, 10°, 11°, 12°, 13°, 14°, and 15° (In other words, ±1 to ±5° from the optimum tilt.). From the above carryout out the tasks below. 1. Record the daily, monthly and annual output (kWh) for each of these simulated tilt angles 2. Determine the minimum and maximum daily output (kWh/day) for each of the eleven tilt angles 3. Determine the difference (maximum - minimum daily and monthly power output) (7 marks) (d) From the results obtained above in (c), identify the tilt angle with the highest total annual power output, smallest month-to-month power variation. (1 mark) (e) Repeat (c) but with daily, monthly and annual output in kWh of solar modules with only three tilt angles namely; (1) The optimum tilt angle (β) determined for UQ St Lucia obtained in Question 1a, (2) β + 10 and (3) β -10. Considering the new obtained data, put yourself in the position of a PV installer or homeowner, which tilt angle would you choose or consider optimum? Support your answer discussing any trade-offs that might influence your decision (e.g., seasonal output variations, practical constraints, battery storage etc.) (5 marks) [For Questions 1c-e. Use a solar module efficiency of 20%, a module area of 100 m², and Day 15 for all calculations in ModuleSIM. Assume that there is no tracking system to be used on the site. Assume the year is a Common year with 365 days] 3 QUESTION 2: (10 marks) You are a project manager who is meant to select the supplier for the solar panels to be installed in the new solar farm at UQ St Lucia Campus. You wish to consider between using Si-based panels from Centro Solar and CdTe solar panels from First Solar. Using the solar panel data sheets provided for the two options, estimate the following: (a) The temperature of the two types of solar panels across the year if they were to be installed at UQ St Lucia (Jan- December). What is the average expected working temperature of the two modules across the year? (3 marks) (b) What is the expected new possible solar panels’ maximum power on the site across the year (Jan - Feb) once installed at site (UQ ST Lucia). Compute the maximum power for each month and average across the year. (3 marks) (c) Which panels would you recommend? Give reasons (4 marks) [Assume the following: • Project will make estimates using UQ ST Lucia site irradiance and temperatures from Excel file: St LuciaIrraTemp) • For Centro Solar, S185P50 is the only one available to consider and for First Solar only FS-270 is available. • S185P50 price is 2.64 times that of FS-270 • Use the attached Data Sheets [Important formulas]

$25.00 View

[SOLVED] EEEE2044 Coursework 2 Digital Modulation Report format

EEEE2044 Coursework 2, Digital Modulation Report format Task 1: Change the parameter “Stop time” until you see that convergence of the BER value is achieved. Do this for at least 3 digital modulation techniques, namely QPSK, 16PSK and 16QAM. Once you have shown convergence you will need to use the appropriate value for the “stop Time” for the rest of the coursework. In Fig.1 plot the BER w.r.t. stop time for QPSK, 16PSK, 16QAM and comment on the results. Fig.1. Convergence of BER results for QPSK, 16PSK and 16QAM modulations Comment: The random integer input of all modulations are set to be 4, and Eb/No for all are set to be 10dB, with 2 of the number of bits per simple for QPSK, 4 for both 16QAM and 16PSK. The convergence of BER results for three different types of modulations are as shown in Fig.1. The BER curve for QPSK converges rapidly, achieving stability at approximately 4000-5000 seconds. This quick convergence aligns with theoretical expectations, as QPSK’s low-order modulation reduces susceptibility to noise and inter-symbol interference, enabling faster error rate stabilization. The final BER value is 4000 seconds to stabilize, which reflects the higher sensitivity of 16PSK to phase noise and synchronization errors due to its 16 distinct phase states. The final BER plateaus at approximately 0.5, which is notably higher than QPSK, highlighting the trade-off between spectral efficiency and error resilience. The BER for 16QAM is small at initial, which can be described as stable at initial. This is because of the input data size that doesn’t match with modulation (16QAM and 16PSK). The module might deem all the bits are wrong, but the logic limits the BER of 16QAM to be 10-5. Overall, the stop time that allows modulations to achieve BER convergence is set to be 5000s in following tasks. Task 2: In Fig.2 plot the BER for QPSK, 16PSK, 16QAM, 64PSK, 64QAM and 256QAM . The graph for each modulation is obtained by changing Eb/N ratio in AWGN block and reading the value in display block. The BER axis should be on a log scale. Fig.2. Comparison of BER for QPSK, 16PSK, 16QAM, 64PSK, 64QAM and 256QAM Comment on the results: (are the results logical and expected from what you have learned and how do they compare with other results (theoretical or other sources). Comments not to exceed this page. Task 3. Compare your results from the Task 2 with theoretical values and discuss. For this task only consider QPSK, 16PSK, 16QAM, 64PSK, 64QAM and 256QAM Fig.3. Comparison of BER for QPSK, 16PSK, 16QAM, 64PSK, 64QAM and 256QAM. Comment on the results: Task 4 Tasks 1-2 have explored ideal coms channel with additive white noise. In reality communication channels are more damaging to the signal and can cause frequency shift of the carrier and time delay of received signals. These effects are incorporated in this Simulink example. Please familiarise with the example and then conduct BER analysis for the case of QPSK modulated signal. In Fig.4 compares obtained result with the BER results for the QPSK modulated signal from the Task 2. Comment on the result. Fig.4. Comparison of BER results Comment on the results:

$25.00 View

[SOLVED] BUSINESS 114 Accounting for Decision Making Assignment 1 S1 2025

BUSINESS 114 Assignment 1 S1 2025 Due: 28 March 11:59pm (NZT) Assignment 1 will be marked out of 50 marks and is worth 10% of your final grade. Overall Presentation Submission: Type your answers into the Answer booklet and submit your assignment by 11:59pm o 28 March 2025 via Canvas. Please keep a copy of your assignment incase there are technical issues with your submission. A WORD document or PDF file of your assignment must be submitted on Canvas. Please follow the instructions below to submit your assignment. 1.   Save your assignment as a WORD document or PDF file. 2. Rename your assignment file name to your last name, followed by a comma and your  first name. For example: Bloggs, Joe    A1. (The last name is Bloggs; A1 is Assignment 01). 3.   You can upload the file on Canvas by going to Assignments, then click on Assignment 01. You will see the Submit Assignment button on the right-hand side of the webpage. A message box will show up, and you need to click on the Choose File button to locate your assignment file, which you had renamed in the above steps, and click OK. The last step will be clicking the Submit Assignment button in the new message box to submit your file. Note:  If you want to replace the existing file you can simply repeat the step 3 above. You  can do that any time before the due date. Answer Booklet: Answers must be typed into the Answer Booklet using Calibri font style of at least size 10. This provides practice for answering questions in the exam booklets. If calculations or tables are required for an answer, they should be typed, set out neatly and labelled clearly in the Answer  Booklet in the space provided.  Bullet point answers are acceptable only if the whole sentence makes sense.  The size of each box to answer each question is intended to be enough to answer the question, however, boxes can be expanded if necessary. Disciplinary   knowledge: The   purpose   of  this   assignment   is   to   be   able  to   demonstrate   an understanding of the material covered in Modules 1 to 3 and apply appropriate methods to solve problems and explain the impact of events on business activity. Solution seeking: For any calculation type questions, you should apply appropriate problem-solving processes systematically. Show all workings,  no  matter how trivial as  marks are awarded for partial work. This is good practice for the exam. Written Communication: A high standard of written expression and presentation is expected of your assignment. Correct spelling and grammar are essential. Discussions should be concise, structured in a logical order, and relevant to the question. Consider using the resources of the Learning Hub for    extra     support. https://www.learninghub.ac.nz/writing/paraphrasing-summarising-and- techniques/ Referencing: APA  referencing is to be used where necessary. You  DO NOT need to reference the assignment question or references provided in the question. However, you DO need to reference any text if you have QUOTED or PARAPHRASED it. Always answer the questions in your own words. (See the library course page for details on how to use APA referencing). Refer toReferenCite - Quick©ite - APA 7th (auckland.ac.nz) If you feel you need to provide references – space is provided for your references to all the questions at the end of the answer book – this space can be expanded. Questions                                                                                                                                               50 marks QUESTION 1: Budgeting and Professional Emails (27 marks) Frosty Delights Ice Cream Shop is located in a busy beachfront area. The shop’s peak season runs from January to March, with customers flocking to enjoy its popular ice cream products. Paul, the store manager, and Kelvin, the accountant, are preparing the financial budgets for the first quarter of 2025. Below is the information you will need to assist them in planning for the upcoming season. Frosty Delights sells three main products: Ice Cream Cones, Cups, and Sundaes. The table below shows the budgeted selling prices and cost prices per unit for each product. Product Details for Q1 2025: Product Name Selling Price ($) Cost Price ($) Ice Cream Cones 5 2 Ice Cream Cups 6 3 Ice Cream Sundaes 8 4 The following table outlines the expected monthly sales volume for each product over the first quarter of 2025. Projected Sales for January to March 2025: Month Ice Cream Cones Ice Cream Cups Ice Cream Sundaes January 1,500 1,200 1,000 February 1,000 1,000 700 March 800 800 500 To ensure smooth operations, Frosty Delights plans to maintain an adequate stock of each product by purchasing inventory in advance. The table below shows the planned purchases for each product over the quarter. Projected Inventory Purchases for January to March 2025: Month Ice Cream Cones Ice Cream Cups Ice Cream Sundaes January 1,200 900 600 February 1,400 1,100 800 March 1,800 1,600 900 Additional Business Information • Introduction of Credit Sales: In Q1 2025, Frosty Delights secured a contract with a local events company to supply ice cream products at various summer festivals. These sales will be made on credit, accounting for 20% of total revenue. For credit sales, 60% is expected to be collected in the month  of  sale,  30%  in  the  following  month,  with  the  remaining  10%  anticipated  to  remain uncollectible. • Payment for Purchases: All inventory purchases are paid in the subsequent month. Purchases in December 2024 amounted to $2,000. • Insurance Expense: An annual insurance payment of $2,500 is due and paid for in March. • Maintenance & Repairs expenses: $1,500 is due and paid for in March. • Monthly Expenses: The store incurs the following monthly expenses, paid within the same month: o Salaries: $5,000 per month. o Rent: $5,000 per month. o Utilities Expenses: $2,000 per month (covering power, water phone, internet, etc.). o Marketing and Advertising: $800 in January; $900 in February; and $1,000 in March. Required: (a)      Prepare a Sales Budget for Frosty Delights Ice Cream Shop for the first quarter of 2025.    (9 marks) (b)      Prepare an Inventory Purchases Budget for the first quarter of2025.    (2 marks) (c)      Prepare an Other Expenses Budget for general expenses for the first quarter of2025.   (2 marks) (d)     Prepare a Cash Budget for the first quarter of 2025, assuming that at the beginning of January 2025, the business has a cash balance of $2,000.   (5 marks) (e)      Using the results from part (d) of this question and the email template provided below, write a professional email from the accountant, Mr. Kelvin White ([email protected]) to the store  manager,  Paul,  at  [email protected], that  provides  a  quarterly  update  on the company's cash position and suggesting methods to improve the monthly cash balance. The email should be no longer than 550 words and must include the following details: 1. Quarterly Cash Flow Summary: Provide a summary of the cash inflows and outflows for Frosty Delights  Ice  Cream  Shop  during  the  first   quarter   of  2025,  highlighting  any  significant transactions or patterns. 2. Financial Health Indicators: Discuss two key indicators that reflect the financial health of the business, using data from the cash budget. 3. Operational Adjustments: Recommend two operational adjustments that could help manage cash flow more effectively in future quarters. To help you with this task, you will use the AI website ChatGPT (ChatGPT: Optimizing Language Models for Dialogue (openai.com)) as follows: 1.    Generate Variations: o Create three different versions of the professional email using ChatGPT (or any other AI model). o Paste each version in your booklet with the reference: "Generated by ChatGPT - Version 1", "Generated by ChatGPT - Version 2", and "Generated by ChatGPT - Version 3". 2. Craft the Final Email: o Review the three versions and identify the most effective parts from each. o Combine these selected parts, along with your own ideas, to write a final, polished version of the professional email in your own words. o Ensure that your final email follows the PAPER Model as taught in Module 1 on Canvas. QUESTION 2: Time Value of Money (23 marks) Part (a) – Investing in a Franchise Jordan is considering purchasing a franchise license to open a restaurant. The total license fee is $250,000, and the franchise company offers two payment options. However, Jordan also wants to consider a third option: delaying the purchase and saving up the full amount over 3 years. Payment Options Available: Option 1: Immediate Payment Discount •     Pay $250,000 upfront now. •     Receive a 5% discount on the total license fee if the full amount is paid immediately. Option 2: Deferred Payment Plan •     Pay the license fee in equal instalment amounts over 5 years. •     The franchise company charges an interest rate of 8% per annum, compounded quarterly. •     Payments are made at the beginning of each quarter. Option 3: Wait and Save •     Wait for 3 years and invest the initial $250,000 in a business savings account that earns 4% interest per annum, compounded annually. •     After 3 years, the franchise company expects to increase the license fee by 10% due to inflation and rising costs. This is an estimate and may vary based on market conditions. Required: i.      Calculate  the  present  value  of  the  license  fee  that Jordan will  pay  upfront  if  he  chooses the Immediate  Payment Discount (Option 1). Show your workings and round your answer to two decimal places.   (1 mark) ii.      Calculate the total amount of the payments Jordan would make under the Deferred Payment Plan (Option 2). Show your workings and round your answer to two decimal places.   (4 marks) iii.       If Jordan chooses the Wait and Save option (Option 3), calculate how much money he would have in the savings account at the end of 3 years if he invests the $250,000 at 4% interest per annum, compounded  annually.  Then  determine  whether  this  amount  will  be  enough  to  cover  the increased franchise license fee, which is expected to rise by 10% after 3 years. Show your workings and round your answer to two decimal places.   (3 marks) Part (b) Saving for a Holiday Emily has a dream of taking a luxury cruise in 15 years, which currently costs $50,000. To pay for this, she plans to invest $25,000 in a fixed deposit account offering an annual interest rate of 6% compounded annually. Based on projections, her investment will grow to approximately $59,915 by the end of 15 years. However, if there is inflation, the cruise price could also rise to $77,900 in 15 years time. Required: i.       Is Emily s fixed deposit plan a good strategy for achieving her goal? Consider the effects of inflation, compounding interest, and opportunity cost.    (2 marks, max 200 words) ii.      Suggest one alternative savings or investment strategy she could consider to better align her savings with her goal. Explain the potential benefits and risks.   (2 marks, max 200 words) iii.       Conclude with your opinion on whether Emily should stick to her current plan or revise it, supported by your reasoning.    (1 mark, max 100 words) Part (c) Retirement You are a financial advisor specializing in retirement finance issues. Sarah has come to you with some questions about her retirement plans. Sarah has just turned 40 years old. Required: i.      Sarah has saved $60,000 and believes this amount is sufficient for retirement if she invests it until she turns 65, without adding any further savings. If Sarah invests this money in an account with an interest rate of 9% per annum that compounds annually, how much will her retirement savings be worth when she retires at 65? (Round to two decimal places).    (3 marks) ii.      Sarah  realises that the amount from your  answer  in  part (i) of this question is  not enough for retirement. She asks if she starts making deposits of $4,000 at the end of each month into a new account with an interest rate of 12% per annum, compounded monthly, how many months will it take for these  deposits to  reach  a  value  of  $326,680?  (consider  this  schedule  of  cash  flows independently of part (i) of this question). (Round to two decimal places).     (3 marks) iii.       KiwiSaver  is  a  retirement  savings  scheme  set  up  by  the  New  Zealand  Government.  Visit  the website https://www.ird.govt.nz/kiwisaver/kiwisaver-individuals/kiwisaver-benefits and find the following information: a.   The minimum percentage an employer must match to an employee's own contribution.   (1 mark) b.   The maximum annual government contribution and the minimum member contribution.     (1 mark) c.   Compare  KiwiSaver  to  at  least  one  other  retirement  savings  option  available  in  New Zealand  (e.g.,  personal  savings  accounts,  term  deposits,  or  managed  funds).  Consider aspects such as contributions, risk, and long-term growth potential. Which option do you think is better for long-term retirement planning, and why?  (2 marks, max 200 words)

$25.00 View

[SOLVED] BUSM183 Services Management

BUSM183: Services Management Module description Welcome to one of the most evolving topics in marketing literature. The services sector, such as telecommunications, financial services, hospitality, transportation services, healthcare, and professional services, accounts for over three-quarters of GDP and employment in developed countries. In light of the growing importance of services in local and global economies, it becomes crucial to study and understand the functionality of service offerings. This module will explore the distinctive characteristics of services and explain how these characteristics affect the marketing approaches used by firms – including challenges involved in controlling service quality, managing customer experience, and synchronising demand and supply. Thereby, the module will examine the management of service processes; customer experience in service settings; and the management of complaint handling and service recovery.  This module is quite theoretical, which is why throughout the module case studies and hands-on exercises will facilitate understanding and transferability of contents. Various examples will also be used to illustrate the applicability and use of these theoretical perspectives on real world marketing practice. The module will enable students to relate and apply theoretical insights to concrete marketing and communication strategy; improve students’ ability in analysing case studies, brainstorming, and communicating ideas; and prepare students for the possible pursuit of a career in marketing. There will be one assessment for this module: an individual essay of 2,000 words, worth 100% of your grade. More details about the assignment are given below and on QMplus. The assessment allows students to apply and develop concepts learned in class. Organisation and delivery of module Each full week there will be a) a lecture, which will be predominantly done live in person (student engagement is required), but may also include other learning activities (e.g. asynchronous activities), and b) live seminar sessions where we will have group exercises, and also where you can ask questions about the week’s material.  The lecture will be no more than 2 hours (including break) and the seminars will be about an hour each week on average, leading to a maximum of 3 hours of total course time each week. As per QMUL regulations, the teaching sessions will begin 5 minutes after the scheduled start time, and end 5 minutes before the end time (to allow you time to get to your other classes). Please also note that there will be no lecture nor seminars the first (partial) week of classes as well as week 7 (which will feature asynchronous learning activities). In weeks 10, 11 and 12, seminars will be is dedicated to the individual services project discussions. You will be divided into smaller groups and assigned to a tutor which will deliver seminars in a seminar room or have the individual services project discussions online. Preparation for Lectures and Seminars In the lecture, the basic concepts and theories of the textbook will be introduced, in addition to material that goes beyond the textbook, which is relevant for the assessments of the module. Seminar exercises will take place during the seminars, which intend to ensure a comprehensive understanding of the topic area and to make sure that students are able to detect and transfer learned concepts to practice. To achieve this goal, a mixture of case studies, discussions, and hands-on exercises is used. Seminar exercises are the main forum where advice and assistance are provided. Preparation for lectures and seminars is a necessity. Information is given on QMplus regarding the readings and seminar tasks that you need to complete before attending the lecture, and additional seminar materials are posted on QMplus. It is the student’s responsibility to ensure that he/she has prepared adequately. All tasks aim to… − enhance your understanding of the topics covered in the lecture. − enhance your ability to bridge theory and practice. − help you to prepare for your dissertation. E-LEARNING: This course is supported by QMplus. Use QMplus for the following purposes: - Get all materials and additional reading lists related to this module. - Submit your assessments.  - Communicate with each other. In addition to QMplus, online resources may be available for the textbook (e.g., cross puzzles, flashcards). By purchasing the textbook you should get access codes for these resources, if available. Aims and Learning outcomes This module will begin with an overview of the concept of services and challenges associated with the marketing and management of services. The aim of this module is to:  1. Identify and explain the unique characteristics of services that distinguish them from goods, and it seeks to characterize the differences between marketing in services vs. manufacturing firms.  2. Provide students with an in-depth understanding of key issues in the design, management and commercialisation of services. 3. Describe important services marketing frameworks and explain how to utilise them to develop and implement advanced strategies in service contexts. 4. Provide students with relevant analytical skills and tools for critical thinking about services, their design, management, and commercialisation. The School of Business and Management has developed new sets of programme specific learning outcomes to be applied from academic year 2021/22 as part of the ongoing work on Assurance of Learning (AoL) to evaluate the programmes delivered and improve student learning. Programme Level Learning Outcomes Learning Outcome 1 (LO 1) Students will plan and conduct research through independent study in the relevant field using appropriate methods LO 1.1 Evaluates the breadth and depth of the debates in the relevant field LO 1.2 Demonstrates ability to formulate a research question LO 1.3 Identifies appropriate research methods to investigate a specific research problem LO 1.4 Demonstrates a structured plan for the research LO 1.5 Demonstrates reflection on the choice of research methods and approaches, including any relevant issues or obstacles LO 1.6 Acknowledges limitations of own arguments Learning Outcome 2 (LO 2) Students will critically use and appraise a variety of sources of information about business and its social context and make practical recommendations LO 2.1 Selects credible sources of data LO 2.2 Draws on relevant data collection tools LO 2.3 Evaluates the quality of data LO 2.4 Supports argument with relevant data LO 2.5 Assesses strength of arguments in academic literature and debates in a relevant field LO 2.6 Compares and contrasts theoretical perspectives LO 2.7 Synthesises theoretical approaches into conceptual framework LO 2.8 Evaluates contemporary issues in business management/society LO 2.9 Acknowledges the social context of business practice LO 2.10 Recommends solutions that could be applied in practice Learning Outcome 3 (LO 3) Students will demonstrate effective oral and written communication skills LO 3.1 Demonstrates effective presentation skills LO 3.2 Expresses arguments coherently through writing LO 3.3 Uses appropriate language, grammar and spelling suitable for scholarly writing LO 3.4 Displays good structure, formatting, style. and presentation of writing LO 3.5 Cites sources of information and data using consistent and a recognised referencing style Module Level Learning Outcomes Academic Content: A1 Demonstrate the ways in which services differ and how they can be classified A2 Understand the critical importance of service activities in the modern world economy A3 Understand the complexity of how customers purchase, use and evaluate services A4 Demonstrate the growing application of design thinking concepts and tools to drive service innovation, improvement and recovery A5 Demonstrate the ways in which both design thinking and marketing concepts, frameworks and tools can be applied A6 Display integrated manner to deliver competitive advantage for organisations within the services sector Disciplinary Skills – able to: B1 Critically analyse the unique elements of services marketing vs. Goods marketing B2 Critically analyse the various dimensions of a service offer B3 Identify, develop and manage complex customer service experiences including expectations, perceptions, evaluations and outcomes B4 Apply design thinking principles to identify and prioritise key areas for advanced service design development B5 Design, develop and implement profitable advanced service strategies Attributes: C1 Demonstrate effective written skills C2 Demonstrate planning, organising and time management skills C3 Demonstrate problem solving and analytical skills Feedback You will be given feedback throughout the module. Dr. Stephan Dickert and Dr. Muhammad Riaz will provide a variety of individual responses, comments, advice and suggestions on your contributions in class (such as your own questions, answers to questions we have asked, contributions to discussion, your presentations in class etc.). The purpose of this feedback, which we will be giving orally, is to enable you to improve your learning, to help you to identify your strengths and weaknesses and to work on them. We call this “formative” feedback, and we regard it as a very important part of the teaching and learning process. Bear in mind, too, that you might also receive responses from your fellow students in class when they hear your presentations or your contributions to discussions – we call this ‘peer feedback’. Peer feedback is an important element of your learning as it often provides valuable comments on how clearly you express your arguments and how well you convey your evidence. If you see us during my office hours, we can provide some additional feedback on any aspect of your learning. Assessment Type    Weighting Details Submission date Programme Learning Outcome(s) Assessed Coursework (Individual Project Essay)      100% 2000 word limit 16/04/2025 15:00pm LO 2.4, LO 2.10, and LO 3.4 Assessment Instructions Individual assessment instructions and submission dates are provided here and also on QMplus and/or in class. Performance in the summative assessment for this module is judged against the following criteria: · Relevance to question(s) · Organisation, structure and presentation · Depth of understanding · Analysis and discussion · Use of sources and referencing · Overall conclusions Students should submit the individual essay as a Microsoft Word or Adobe PDF document online via QMplus. Individual essay submissions received after the deadline will be subject to a late penalty. Please refer to the PG Student Handbook for further details. You are required to submit an electronic copy of your assignment on QMPlus which will be put through Turnitin, the plagiarism detection service. Assessment details: The assessment is a written individual essay, a Service Design Project, designed to explore a real-world problem or issue faced by an organisation in the service sector. This will test students’ acquisition of subject-specific knowledge and understanding, and their ability to apply relevant knowledge and skills. The word count for this assessment is 2,000 words. This does not include reference lists and bibliographies. The stated word count may be exceeded by a maximum of 10% (200 words). Marks could be deducted if you overshoot this limit.  You may use AI (artificial intelligence) tools in a limited capacity when planning your essay. The specific AI policy for this module is presented herein as well as on QMplus. Individual Essay Structure An underlying assumption of the services marketing module is that students learn best and retain more when they actively apply and work with the concepts presented in the course materials rather than simply read about them or hear the talk about the ideas. The purpose of this assignment is for you to apply concepts and tools learned in class to real situations. This assignment is designed to help students develop the ability to make marketing decisions in the services context, to support these decisions with appropriate analyses, and to learn to communicate their ideas coherently. By completing the assignments, you will learn to apply the concepts and models in practice, to critically analyse them and to discuss implications. As a learning exercise in this module, you will design a new service or redesign an existing service. You are required to use the knowledge you developed on the key aspects of services marketing as discussed in the module. You are also expected to consolidate the range of skills that you possess to search for and analyse relevant information in order to evaluate different aspects of a service’s marketing strategy. In doing so, it will be necessary to use the relevant marketing theories as a platform. for the evaluation and to build on your critical thinking and creativity skills.  There is no single ‘correct’ way to present the plan as it will vary according to the nature of the business in question. However, you could consider the following structure as your reference: Title of new or redesign service  · Creating a brand name is preferable · Brand logo is preferable Introduction · Start with the business challenge in the market/industry that you aim to use your newly developed service to conquer/solve · Introduce the service organisation of your choice  · Support your justification with facts and figures with relevant references (e.g.industry, company, news sources) is preferable Target market segment(s) & Position in the market: · Describe the market segment(s) that you want to target · How you want your service to be positioned relative to the competition What type relationship you want to have with your target customers, and how. · You should provide justification for why this service idea would be valued by your target and why your service will be able to serve the needs of this group better than competitors. Be sure that you sufficiently investigate competitors that exist. · Support your justification with facts and figures with relevant references (e.g. industry, company, news sources) is preferable  · You could integrate this part with introduction if that could increase readability and enhance logic Proposed marketing mix: · Just focus on the most relevant Ps to your service · The key components of your service and all of your tactic decisions (the 7 Ps) should then be based on the above analysis of your market segment and positioning. · Service delivery process and service recovery strategies: – You should create a thorough service blueprint for your chosen organisationand make explanation of how it will work. If you are redesigning an existing service, you should also include a blueprint of the original service. You are required to relate and apply the service marketing principles such as service provision process, consumer experience, blueprinting, and service recovery. It is necessary that you should see yourself as a consultant that identifies problems involved in the consumer journey within a service sector and proposes alternatives that improve the consumer service experience. · Physical evidence/ Servicescape – What role does the servicescape play for this organisation’s services? How might the servicescape be used as a source of competitive advantage by the organisation? · People: – How to have suitable “people” in your service? How to create an effective and efficient working environment? · Promotion: – which communication media used to attract new consumers and retain loyal customers (e.g., touchpoints)? · Other marketing mixes relevant to your (re)designed services? Launch and implementation schedule · Just 1-2 sentences to show your plan · Aim of this part if to demonstrate the service is realistic and feasible · If you could use other source of information to justify your launch and implementation schedule, this is preferable Conclusion · Just 1-2 sentences to summarize your service · Discuss the implications of your services to service industry, local economy, targeted consumers, general public, etc. · Discuss the limitations of your services and suggestions/recommendations to the future services References: Whenever you incorporate information from any articles or comments published in online or offline publications, you need to provide citation and a list of all cited references. Use the Harvard (or APA) Referencing System - for a guide see http://libweb.anglia.ac.uk/referencing/harvard.htm or https://apastyle.apa.org/  Although primarily written for a business audience, your Service Design Project should nevertheless draw upon appropriate concepts/tools covered in the module, external data sources and your own further reading/research, all appropriately referenced. 

$25.00 View

[SOLVED] Math 6B Worksheet 8 Winter 2025

Math 6B Worksheet 8 Winter 2025 Due Thursday, Feb 27, at 11:59pm. This worksheet is meant as a review of infinite series, which you should be familiar with from Math 3B. Review power series, alternating series, telescopic series, basic divergence test, root test, ratio test, integral test, Taylor series, . . . . 1.  Give an example of a series Σan, where an  → 0 as n → ∞ , but Σan  diverges. 2.  Evaluate the following series. 3.  Determine the convergence or divergence of the following series. 4.   are given. Use these and the root test to show the convergence or divergence of 5. Write the Taylor series for the following functions.

$25.00 View

[SOLVED] Solar tutorial- ENGY7000

Solar tutorial- ENGY7000 QUESTION 1: a) Estimate the optimum tilt angle (β) for solar panels in London. [Resources/equations: At solar noon in Southern hemisphere: α  = 90 + ɸ - δ At solar noon in Northern hemisphere: α = 90 - ɸ + δ Where: δ is the declination angle (degrees); α is the Altitude (degrees); ɸ is the Latitude (degrees); and β is the solar panel/module tilt angle to the horizontal (degrees) Annual       solar        tables        to        obtain        the        altitude angle        at        noon: https://andrewmarsh.com/apps/staging/sunpath3d.html] b) Use the ModuleSIM Excel file to examine how the energy output of the modules varies throughout the year for different tilt angles near the optimum value for London. For example, ifyour calculated optimum tilt angle is 10°, simulate module performance at: 5°, 6°, 7°, 8°, 9°, 10°, 11°, 12°, 13°, 14°, and 15° (In other words, ±1 to ±5° from the optimum tilt.). From     the above, determine the daily, monthly and annual output (kWh) for each simulated tilt angle (Use a solar module efficiency of20%, a module area of 100 m², and Day 15for all calculations in ModuleSIM. Assume that there is no tracking system to be used on the site. Assume theyear is a Common year with 365 days) QUESTION 2: Using the solar panel data sheet for Solibro provided, estimate the following: (a) The temperature of Solibro solar panels (SL1-65F) they will be working at in July if they were to be installed in London. (b) What is the expected new possible solar panels’Maximum power in July once installed in London. [Assume the following: • Assume London average temperature in July is 20.4 °C • The average irradiance of London in July is 1028.46 W/m2 • Use the attached Data Sheet for Solibro [Important formulas]

$25.00 View

[SOLVED] 08 34484 EconometricsR

Assignment Remit Programme Title BSc Economics etc Module Title Econometrics Module Code 08 34484 Assignment Title Stata Assignment Level LI Weighting 50% Hand Out Date 17/03//2025 Deadline Date & Time 10/04/2025 12pm midday Feedback Post Date 16th working day after the deadline date Assignment Format Report Assignment Length 1500 words Submission Format Online Individual Module Learning Outcomes: This assignment is designed to assess the following module learning outcomes. Your submission will be marked using the Grading Criteria given in the section below. LO 1. demonstrate knowledge and critical understanding of econometric theory LO 2. apply a range of methods of inference to practical problems in econometrics and empirical economics LO 3. interpret econometric results Assignment: Students will: .   Access and download economic data from standard sources. .    Handle, manage and analyse data using econometric software (Stata). .    Produce summary statistics and carry out regression analyses to explore important economic relationships (both guided and open-ended). .   Apply economic and econometric theory to interpret results. .   Think critically about econometric limitations. Grading Criteria / Marking Rubric Students will be marked on (rubric at end): .   Clarity of argument (in writing and use of tables/figures). .    Use of evidence (claims made supported by results from empirical analysis). .   Critical application of economic and econometric theory.

$25.00 View

[SOLVED] EEEE2044 Coursework 2 Digital ModulationMatlab

EEEE2044 Coursework 2 Digital Modulation The aim of the coursework is to evaluate BER for a range of popular digital modulation techniques. The coursework has a total of four tasks: - Task 1 is familiarisation with the Matlab Simulink programme and the parameters of the simulation. For this part a manual on how to build a simple communication channel is added in this document. - Task 2 is evaluation of the BER for QPSK, 16PSK, 16QAM 64PSK, 64QAM, and 256QAM modulation techniques in the presence of the additive white Gaussian noise. For a given modulation scheme, the BER analysis is done by changing the signal to noise ratio (parameter Eb/No) in the communication block that has additive white noise (AWGH block). Please note that the simulation parameters will need to be adjusted for each modulation technique. - Task 3. In this part you will attempt to validate your results from Task 2. For this task, you need to find the theoretical values of the BER for selected modulation schemes and plot them for above modulation schemes. Discuss agreement or discrepancies with results obtained in Task 2. Note that Part 3 is an element of the coursework that is aimed at distinguishing students in the 70-100% mark band. - Task 4 will consider a practical transmission system where additive white noise, time delay and frequency offset are added as a consequence of a more realistic communication system. The effect of the low pass filter on signal spectrum is also included. In this task you will plot BER for QPSK and compare that results from the one obtained in Task 2 and comment on the results. Guidance on how to build a communication link in Simulink is given in the Appendix. A report of results should be in the provided document and should not be longer than 4 pages. The penalty for exceeding the length is 5% per page. The marking scheme is given in Table 1.   Table 1. Rubric marking scheme  

$25.00 View

[SOLVED] CHNS1601 Understanding Contemporary China

CHNS1601 Understanding Contemporary China 2 Tutorial Presentation Instructions You need to choose a date to give a 8-10 minute oral presentation in English on the tutorial topic of the week. Your presentation includes two components: a 10-minute oral presentation (15%) and a 500-word written summary in English (5%). 10% more or less is fine. You can submit a hard copy of your summary to your tutor any time during the following week. It is best to choose a topic in Week 1. If you are unable to do so, you will be left with limited choice. Below are specific requirements and expectations: General tips for a good presentation · What really matters is not how much you say but what you say and how well you say it. · Read the assessment criteria before beginning to prepare your presentation. · It is up to you whether or not to use PPT and/or other visual aids. Please keep in mind that clarity, structure, organization and creativity are essential assessment criteria. · It is a good idea to limit your presentation to 7-8 minutes, so that you will have 2-3 minutes for class discussion and Q&A. · Your presentation must include a brief overview of the topic and in-depth analysis of one or no more three aspects of the topic. · Your presentation must argue a particular point of view about one aspect or no more three aspects of the tutorial topic. If you present on more than one aspect, the various aspects must be integrated. · Your thesis must be original, not drawn from the assigned readings. · Good style. is usually characterized by A (accuracy), B (brevity), C (clarity), F (finesse), and S (simplicity). Specific tips for a good presentation - A good presentation is well-structured and follows a clear and consistent organizing principle. - Do not present long summaries of historical events. You can assume that your tutor and classmates already know the events quite well. - Do not summarize any secondary readings. You must develop your own argument, and then support your argument by mentioning or citing the secondary readings as appropriate. - Do not comment on whether you think the writing is good or bad. Your presentation should instead be aimed at making an evidence-based argument about the primary writing/writings. - Do not read from a script, unless you absolutely have to. It is much better to use a simple page of notes or cues, and then speak naturally. As long as you speak clearly, your grammar is not important to your mark in this assessment.

$25.00 View

[SOLVED] PS931 - Bayesian Approaches in Behavioural Science Assessment 2 Spring Term 2025

Assessment 2 PS931 - Bayesian Approaches in Behavioural Science Spring Term 2025 (updated: 2025-02-12) • This assessment counts for 42% of your overall grade. • Submission Instructions: Please submit your solution as one pdf document to Tabula as “Assess-ment 2” by midday (12 noon), Wednesday, 9th April 2025. • Important: Your document should be called YOUR-STUDENT-ID_a2.pdf. Please also add your student ID to the top of the document. To help ensure anonymous marking, please refrain from including your name in the document (or the file name). Task There are many approaches to modelling the cognition and behaviour of humans and other animals, and decisions can be viewed at at range of levels, from the behavioural level (patterns of outcomes) to the neural level (detailed cognitive processes). Bearing this in mind, please supply an answer, in the form. of an essay, to the following question: To what extent can Bayesian models explain individual differences in decision-making? Criti cally assess this in relation to cognitive biases and heuristics, using illustrative examples from peer-reviewed studies. All references should be included at the end, in APA-style. format. The essay has a maximum length of 2000 words. The word count does not include the reference list (nor the title). Finally, please note that submitting AI-generated text for this assessment will be considered as plagiarism; i.e., suspected cases will be referred to the academic integrity panel.

$25.00 View

[SOLVED] GEOG5102 Applied GIS Programming Assignment

GEOG5102 Applied GIS Python Programming Assignment Part A You are provided with three Excel files that contain grass growth rates (kg/DM/Hectare) measured at regular intervals between 10/01/2013 and 13/07/2015 at a dairy farm in Ireland. The three different excel files correspond to three different trials: High stocking rate, Medium stocking rate, and Low stocking rate. Stocking rates refers to the number of dairy cows a farmer would have out grazing on a given amount of land over a certain period of time and is generally expressed as the number of livestock units (LU) per unit of land area. In our case, Low = 2.51 LU/ha; Medium = 2.92 LU/ha; and High = 3.28 LU/ha. Stocking rate is important as 1t is the main driver of milk production in grazlng dairy systems due to its impact on milk production per hectare and on the amount of grass that is utilised (eaten) per hectare. You are required to produce a suitable figure that displays the temporal change in grass growth rate for the three treatments throughout the study period on a single plot using Python. You are also required to generate a figure which contains three subplots, one for each of the separate treatments. Deliverables for Part A are a Notebook file (.ipynb) and a pdf of the Notebook (i.e. the .ipynb saved as a pdf including the generated outputs and any associated markdown). Please name these files as follows: (where studentnumber should be replaced with your actual student number). studentnumber_PartA.ipynb                studentnumber_PartA.pdf Part B During the practical sessions you gained some familiarity with scripting in Python and its integration with ArcGIS. You are required to develop a stand-alone script that will: - Clip a raster DEM to a defined shape - Create vector contour lines from the clipped raster DEM. You will clip the ArranDEM.tif that you have used in Practical 3 to the extent of the polygon shapefile arranF.shp. The contour interval should be 30 meters and the base contour should be 0. Running the script. should create two outputs: - A clipped raster DEM - An output shapefile of 30m contour lines for the Isle of Arran. Deliverable for Part B is the single python file that will perform. these functions when run. Please name this file as follows: studentnumber_PartB. Three files altogether (for Part A and Part B) should be submitted to Moodle as individual files, i.e. do not zip them together. You are responsible for ensuring that the submitted script files runs correctly and that comments are used throughout the script to describe what processes are being carried out. Please ensure all submitted scripts contain the following header: #  and  # student numbers # file was created> Don't forget that the ArcGIS Pro Help can be a useful resource if you need to figure out the syntax for a particular command. This assignment accounts for 40% of the credits for the Applied GIS course and Part A and Part B are weighted equally. Please submit these files to Moodle by 17:00 on Friday 28th March 2025

$25.00 View

[SOLVED] ENGY7000 Energy Storage Tutorial

ENGY7000 – Energy Storage Tutorial Question 1 One of the stated advantages of electric vehicles is the possibility of Vehicle to Load (VtL) discharging, whereby the electric vehicle battery is discharged to power a household or components of a household. Consider the BYD Dolphin Essential which features a single 70kW/180Nm front-mounted electric motor, powered by a 44.9kWh Blade lithium iron phosphate (LFP) battery. It features a DC to AC converter to allow the EV to run appliances or devices. If a household were to lose power due an extreme weather event, how long (or for how many cycles) could the Dolphin keep the following appliances running? I used https://calculator.energyrating.gov.au/for the appliance data. a)   LG 315L Top Mount Frost Free Silver Fridge GT-3S b)  Westinghouse Washing Machine WWW9024M5SA c)   Bosch GV642B_WT Dishwasher d)   Daikin RZAV85C2V1/FCA85CVMA Split Cycle Air Conditioner to cool my home What are some additional challenges of operating your EV as a home battery (outside of extreme weather events)? Question 2 If a home battery has a discharge efficiency of 92% and a charging efficiency of 89% calculate the round trip efficiency for each cycle of the battery. Question 3 Consider your night-time appliance use in your own home. Using the energy ratings calculator above, calculate the daily energy required for your house to operate from 6pm to 6am across the summer months. Then: a)   Estimate the size of battery required to keep your house ‘off-grid’ during the night. b)   Estimate the size of the solar array needed (18% efficiency) to charge the battery during the day. Use the moduleSIM.xls file and your home location as the input data.

$25.00 View