Skip to content Skip to navigation

Connexions

You are here: Home » Content » Laboratory Hardware Multiplier: Lab3 - RMS and active power calculation

Navigation

Lenses

What is a lens?

Definition of a lens

Lenses

A lens is a custom view of the content in the repository. You can think of it as a fancy kind of list that will let you see content through the eyes of organizations and people you trust.

What is in a lens?

Lens makers point to materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

Who can create a lens?

Any individual member, a community, or a respected organization.

What are tags? tag icon

Tags are descriptors added by lens makers to help label content, attaching a vocabulary that is meaningful in the context of the lens.

This content is ...

Affiliated with (What does "Affiliated with" mean?)

This content is either by members of the organizations listed or about topics related to the organizations listed. Click each link to see a list of all content affiliated with the organization.
  • TI MSP430 display tagshide tags

    This module is included inLens: Texas Instruments MSP430
    By: Texas InstrumentsAs a part of collection: "Teaching and classroom laboratories based on the “eZ430” and "Experimenter's board" MSP430 microcontroller platforms and Code Composer Essentials"

    Comments:

    "This is an excerpt from the MSP430 Teaching CD produced under TI sponsorship and review at the University Beira Interior in Portugal. The material covers everything from "hello world" on an eZ430 […]"

    Click the "TI MSP430" link to see all content affiliated with them.

    Click the tag icon tag icon to display tags associated with this content.

Recently Viewed

This feature requires Javascript to be enabled.

Tags

(What is a tag?)

These tags come from the endorsement, affiliation, and other lenses that include this content.
 

Laboratory Hardware Multiplier: Lab3 - RMS and active power calculation

Module by: Pedro Dinis, António Espírito Santo, Bruno Ribeiro. E-mail the authors

Summary: Using the MSP-EXP430FG4618 Development Tool and the MSP430FG4618 device analyse the MSP430’s performance when makes a multiplication operation with the hardware multiplier. It is performed a task operational analysis in which is calculated the active power and the RMS value of an electrical system. The execution time is measured with an oscilloscope.

Laboratory Hardware Multiplier: Lab3 - RMS and active power calculation

Introduction

This laboratory explores the hardware multiplier peripheral. It is composed of three different tasks, each of which evaluates a different characteristic of the hardware multiplier peripheral:

- Multiplication operation execution time, with and without the hardware multiplier.

-Differences between the use of the operator “*” and direct write to the hardware multiplier registers.

- Task operational analysis, in which the active power and the RMS value of an electrical system are calculated.

Overview

This laboratory explores and analyses the MSP430 performance when it makes multiply operations using the hardware multiplier peripheral. In this laboratory, the active power and the RMS value of an electrical signal are calculated.

The execution times are measured using an oscilloscope.

Resources

This laboratory only uses Port P2.1 connected to LED2, in order to measure the execution time of the multiply operation when it is performed by the hardware multiplier.

The application uses the default configuration of the FLL+. All the clock signals required for the operation of the components of the device take their default values.

Software application organization

- The application starts by stopping the Watchdog Timer;

- Two _NOP() instructions are provided to associate breakpoints, in order to read current and voltage samples (N = 200) from files;

- Power is computed by applying the following formula:

P = 1 N k = 1 N u k i k P = 1 N k = 1 N u k i k size 12{P``=`` { {1} over {N} } Sum cSub { size 8{k`=`1} } cSup { size 8{N} } {u"" lSub { size 8{k} } `i"" lSub { size 8{k} } } } {}
(1)

- A signed multiply operation is performed by writing the first sample of current to MPYS and the first sample of voltage to OP2;

- The result of the multiplication is stored in the RESHI and RESLO registers;

- A loop is performed with a signed multiply and accumulate (MACS) operation;

- The final result is transferred from the RESHI and RESLO registers to the long variable result;

- The power is computed by dividing the variable result by the number of samples (N);

- Port P2.1 is active between MACS operations;

- The RMS current and voltage values are calculated from the following expressions:

I RMS = 1 N k = 1 N i k i k I RMS = 1 N k = 1 N i k i k size 12{I rSub { size 8{ ital "RMS"} } ``=`` sqrt { { {1} over {N} } Sum cSub { size 8{k`=`1} } cSup { size 8{N} } {i"" lSub { size 8{k} } `i"" lSub { size 8{k} } } ``} `} {}
(2)
U RMS = 1 N k = 1 N u k u k U RMS = 1 N k = 1 N u k u k size 12{U rSub { size 8{ ital "RMS"} } ``=`` sqrt { { {1} over {N} } Sum cSub { size 8{k`=`1} } cSup { size 8{N} } {u"" lSub { size 8{k} } `u"" lSub { size 8{k} } } ``} `} {}
(3)

- The two procedures are similar, with the exception of the square root (sqrt) operations;

- P2.1 is active during for all the RMS current calculation;

- The computation times of the sqrt and division operations are determined when the RMS voltage value is calculated;

- This application ends by putting the device into low power mode LPM4.

System configuration

Go to Properties > TI Debug Settings and select the Target tab. Uncheck the automatically step over functions without debug information when source stepping in order to allow stepping into the multiply routine;

Go to Properties > C/C++ Build > Linker MSP430 Linker v3.0 > General options and choose the option 16 (default) at the Link in hardware version of RTS mpy routine. With this linker option, the application ( Lab3_HM.c ) will be built with the 16-bit hardware multiplier peripheral contained in the Experimenter’s board.

Rebuild the project and download to the target.

Analysis of operation

Loading samples from files

- Insert a breakpoint at line of code 61 (first _NOP() operation);

- Edit Breakpoint Properties and choose the Read Data from file action;

- Configure the following data fields:

File: i.txt

Wrap around: True

Start address: &i

Length: 200

- Include a breakpoint at line of code 63 (second _NOP() operation);

- Edit Breakpoint Properties and choose the Read Data from file action;

- Configure the following data fields:

File: u.txt

Wrap around: True

Start address: &u

Length: 200

Computing active power

- Connect the oscilloscope probe to port P2.1, which is available at Header 4 pin 2;

- Put the cursor at the line of code 88 and Run to line;

- In the Variables view, add the global variable P and format it to decimal;

- The active power is in the region of 1204 W;

- The pulse width, as viewed on the oscilloscope, corresponds to the time to perform the 200 signed multiply and accumulate operations and is 5.4 msec.

Compute RMS current value

- Starting at the last step of the previous task, put the cursor at line of code 105 {MPYS = u[0]} and Run to line;

- Add the global variable I (RMS voltage);

- Set the value to 10;

- The pulse width, as viewed on the oscilloscope, corresponds to the time required to perform the 200 signed multiply and accumulate operations, 1 division operation and 1 square root operation, and is 12.6 msec;

Compute RMS voltage value

- Starting at the last step of the previous task, put the cursor at line of code 121 {_BIS_SR(LPM4)} and Run to line;

- Add the global variable U (RMS voltage);

- Set the value to 240;

- The pulse width, as viewed on the oscilloscope, corresponds to the time to perform the 200 signed multiply and accumulate operations, and is 6.8 msec;

This example and many others are available on the MSP430 Teaching ROM.

Request this ROM, and our other Teaching Materials here https://www-a.ti.com/apps/dspuniv/teaching_rom_request.asp

Content actions

Download module as:

PDF | EPUB (?)

What is an EPUB file?

EPUB is an electronic book format that can be read on a variety of mobile devices.

Downloading to a reading device

For detailed instructions on how to download this content's EPUB to your specific device, click the "(?)" link.

| More downloads ...

Add module to:

My Favorites (?)

'My Favorites' is a special kind of lens which you can use to bookmark modules and collections. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need an account to use 'My Favorites'.

| A lens I own (?)

Definition of a lens

Lenses

A lens is a custom view of the content in the repository. You can think of it as a fancy kind of list that will let you see content through the eyes of organizations and people you trust.

What is in a lens?

Lens makers point to materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

Who can create a lens?

Any individual member, a community, or a respected organization.

What are tags? tag icon

Tags are descriptors added by lens makers to help label content, attaching a vocabulary that is meaningful in the context of the lens.

| External bookmarks