A MIDI Primer For Computer Scientists

Size: px
Start display at page:

Download "A MIDI Primer For Computer Scientists"

Transcription

1 A MIDI Primer For Computer Scientists Steven Robbins September, 1995 Technical Report CS Abstract. This is the first in a series of technical reports dealing with the use of sound by programs. In this report, some of the important features of MIDI (Musical Instrument Digital Interface) are described. This is in no way a complete reference to MIDI. Instead, this technical report provides a brief introduction to MIDI devices for computer scientists who want to use these devices to produce sound from programs. Division of Computer Science The University of Texas at San Antonio San Antonio, TX 78249

2 1 Introduction MIDI stands for Musical Instrument Digital Interface. The MIDI standard dates back to the 1980s and is still evolving. Manufacturers of MIDI equipment have extended the standard in different ways. Since we are not interested in making music, but rather in generating notes with a MIDI synthesizer, we will restrict our attention to the basics. More detailed information can be found in [1]. Almost nothing in this report is exactly correct. All of the concepts have been oversimplified so that they can be easily described. This simplified view is sufficient for most uses we have in mind. A MIDI synthesizer is a device for creating sounds. The synthesizers we are interested in can generate many sounds at once. A sound is specified by giving its pitch, its volume, and its timber. The pitch determines which note is played. The timber corresponds to the instrument which is playing the note. Typically a synthesizer has have several channels; 16 is common. Each channel can be set to simulate the sound of one instrument chosen from hundreds that are preprogrammed into the device. We will concentrate on the 128 instruments and the drum kit that make up General MIDI and should be available on all MIDI synthesizers. First the device is initialized. This includes specifying which instrument to use for some of the channels. After that commands can be sent to play notes. The simplest command is to start a note corresponding to a given channel with a given pitch and volume. The note is played and will continue until another command stops the note. If several start commands are given before the corresponding stop commands, the notes can be played at the same time. 2 Channels and Instruments The MIDI literature usually refers to 16 channels numbered 1 through 16. However, when commands are sent to MIDI devices these channels are represented by 4 bits, so at the hardware level the channel numbers are in the range from 0 to 15. We will always refer to channels using this range. To set a particular channel to correspond to a particular instrument, you must send a three-byte message to the device. The first byte contains 0xc in the high nibble and the channel number in the low nibble. The second byte is 0, and the third byte is an instrument number. The table at the end of the report gives the correspondence between numbers and instruments the General MIDI interface. This set is supported by almost all devices and is sufficient for our needs. The instruments include a number of different pianos, organs, string instruments, wind instruments and a few sound effects such as a telephone, birds, a helicopter, and a gun shot. You would set up a channel from a C program with a function which might look like: send_three_bytes(0xc0+channel,0,instrument) 1

3 In addition to the standard instruments, General MIDI also specifies a drum kit. This is a collection of drum and other percussion-like sounds which are grouped together as one instrument. Often a synthesizer s default setup will assign one channel, channel 9, to the drum kit and all others to the first MIDI instrument, a piano. With a drum kit each pitch corresponds to a different type of drum instrument. For example, a pitch value of 60 on most instruments corresponds to a C note. In the General MIDI drum kit, this corresponds to hitting a Bongo. In the MIDI terminology, what we have called instruments are called programs and the commands to associate programs with channels are called program change messages. Usually program numbers are given in the range from 1 to 128, rather than the range 0 to 127 which we have used. We have chosen to count starting at 0 because this is how the hardware interface works. The table at the end of this report gives a complete list of the General MIDI instruments available on a particular synthesizer, the Korg X5DR [2]. The following table gives a list of the instrument types and the corresponding numbers. Numbers Family 0to7 Piano 8to15 Chromatic Percussion 16 to 23 Organ 24 to 31 Guitar 32 to 39 Bass 40 to 47 Strings 48 to 55 Ensemble 56 to 63 Brass 64 to 71 Reeds 72 to 79 Pipes 80 to 95 Synth lead 96 to 103 Synth effects 104 to 111 Ethnic 112 to 119 Percussive 120 to 127 Sound effects 3 Starting and Stopping Notes You start a note by giving the channel, the pitch, and the volume. The channel determines the instrument and the pitch determines the note. The pitch and volume are each in the range 0 to 127. A volume of 0 represents no sound. A pitch of zero corresponds to a very low C (21 notes below the lowest note on a piano) and a pitch of 127 corresponds to a very high G (7 notes above the highest note on a piano). A start note command is three bytes. The first 2

4 byte contains 0x90 in the high nibble and the channel number in the low nibble. The second byte is the pitch and the third byte is the velocity. You can send such a command from a C program with send_three_bytes(0x90+channel,pitch,volume) After you start a note in continues playing until you stop it. You can stop the note by sending three bytes. send_three_bytes(0x80_channel,pitch,volume) Different instruments behave differently between the starting and the stopping of a note. When you strike a key on a piano, the note is loud at first and then starts to die out slowly, even while you hold down the note. Releasing the note causes the sound to die out more quickly. An organ behaves differently. As long as you hold down the note, you get a sound with almost constant volume. The sound dies out quickly when the note is released. For other instruments the note dies out so quickly after it is started that the time between the start and stop commands makes little difference in the perceived sound. I have classified each instrument as to my perception of how the sound behaves after a start command, and this is listed in the table at the end of this report. The value that I have called volume is referred to as velocity in the MIDI terminology. It corresponds to how fast the note is hit, or how fast pressure is applied to the note. For most instruments this directly corresponds to the volume of the note. The velocity for the stop note command refers to the speed at which the note is released. The differences here are usually not noticeable to the untrained ear, and so the velocity value for the stop note command is not critical. 4 The Hardware Interface The MIDI standard defines a set of DIN connectors, voltage levels and a bit rate. Communication is asynchronous serial at bits per second. The serial communication uses a 5 milliamp current loop. It takes 3 bytes to start a note. With the serial overhead of one start bit and one stop bit it takes 10 bits to send a byte so the 30 bits in the command to start a note can be sent in less than a millisecond. The MIDI interface is not compatible with the standard RS232-C serial interface on most computers and so a computer needs a MIDI port to hook it directly to a MIDI device. Most PC sound cards include such a port. Workstations typically do not have a MIDI port but serial-to-midi adapters are available from Keytronics [3] for about $100. Some synthesizers are now being made with built-in serial ports allowing them to be connected directly to a standard serial port of a PC or workstation. One such device and a library for interfacing to it is described in [2]. 3

5 5 The Table The table given on the next page lists the correspondence between numeric values and the things they can represent. For each number in the range 0 to 127, 5 values are given. The first is the instrument that is represented by the number when the number is used in a channel initialization command. Next is my perception of how the volume of the note behaves while the note is on. This is called the envelope of the note and is in the column labeled L. I have used three classifications. F means that the note dies out fast. S means that the note dies out slowly. C means that the volume is constant as long as the note is on so that it does not die out until it is stopped. The third entry is the Drum Kit sound that the number corresponds to if it is used as the pitch for a note on channel 9. Only notes represent valid Drum Kit sounds. Next is my perception of the envelope of that Drum Kit sound. Last is the note that the number represents when used as the pitch of a start note or stop note command. I have picked out a few of the instruments and Drum Kit sounds as being an interesting subset to examine when determining what to use for an auralization. These are listed in boldface. The serious user will want to listen to all of the MIDI instruments and drum sounds. References [1] C. Braut, The Musicians s Guide to MIDI, SYBEX Inc, Alameda, CA, [2] S. Robbins, Controlling the Korg X5DR Synthesizer from a UNIX Program, UTSA Division of Computer Science Technical Report, CS [3] Keytronics, Inc. xxx 4

6 Num Instrument L Drum L Note Num Instrument L Drum L Note 0 G01 Piano M C-2 64 G65 Soprano Sax C Open Conga F E3 1 G02 Brite Piano M C# G66 Alto Sax C Hi Timbal F F3 2 G03 Hammer Piano M D-2 66 G67 Tenor Sax C Lo Timbal F F# 3 3 G04 Honky Tonk M D# G68 Baritone Sax C Agogo F G3 4 G05 New Timesh M E-2 68 G69 Sweet Oboe C Agogo F G# 3 5 G06 Digi Piano M F-2 69 G70 English Horn C Cabasa F A3 6 G07 Harpssichord M F# G71 Bassoon Oboe C Maracas F A# 3 7 G08 Clavichord M G-2 71 G72 Clarinet C Whistle S F B3 8 G09 Celesta M G# G73 Piccolo C Whistle L M C4 9 G10 Glocken M A-2 73 G74 Flute C Guiro S F C# 4 10 G11 Music Box M A# G75 Recorder C Guiro L M D4 11 G12 Vibes M B-2 75 G76 Pan Flute C Claves F D# 4 12 G13 Marimba M C-1 76 G77 Bottle C WoodBlock2 F E4 13 G14 Xylophone M C# G78 Shakuhachi C WoodBlock3 F F4 14 G15 Tubular M D-1 78 G79 Whistle C Mute Cuica F F# 4 15 G16 Santur M D# G80 Ocarina C Open Cuica F G4 16 G17 Full Organ C E-1 80 G81 Square Wave C MuteTriang F G# 4 17 G18 Perc Organ C F-1 81 G82 Saw Wave C OpenTriang F A4 18 G19 BX - 3 Organ C F# G83 Syn Caliope C Cabasa F A# 4 19 G20 Church Pipe C G-1 83 G84 Syn Chiff C JingleBell M B4 20 G21 Positive C G# G85 Charang M Bell Tree F C5 21 G22 Musette C A-1 85 G86 Air Chorus C Castanet F C# 5 22 G23 Harmonica C A# G87 Rezzo 4ths C Side Kick F D5 23 G24 Tango C B-1 87 G88 Bass & Lead C Taiko Lo F D# 5 24 G25 Classic Guitar M C-0 88 G89 Fantaasio C E5 25 G26 Acoustic Guitar M C# G90 Warm Pad C F5 26 G27 Jazz Guitar M D-0 90 G91 Poly Pad C F# 5 27 G28 Clean Guitar M D# G92 Hhost Pad C G5 28 G29 Mute Guitar M Rock Kick F E-0 92 G93 Bowed Glass C G# 5 29 G30 Over Drive M Snare 3 F F-0 93 G94 Metal Pad C A5 30 G31 Dist Guitar M Open HH F F# G95 Halo Pad C A# 5 31 G32 Rock Monics C Fat Kick F G-0 95 G96 Sweep C B5 32 G33 Jass Bass M Timbales F G# 0 96 G97 Ice Rain M C6 33 G34 Deep Bass M Snare 1 F A0 97 G98 Sound Track C C# 6 34 G35 Pick Bass M RollSnare1 M A# 0 98 G99 Crystal M D6 35 G36 Fretless M Real Kick F B0 99 G100 Atmosphere C D# 6 36 G37 Slap Bass 1 M ProcesKick F C1 100 G101 Brightness C E6 37 G38 Slap Bass 2 M Side Kick F C# G102 Goblin C F6 38 G39 Synth Bass 1 M Rock Snare F D1 102 G103 Echo Drop C F# 6 39 G40 Synth Bass 2 C Hand Claps F D# G104 Star Theme C G6 40 G41 Violin C LightSnare F E1 104 G105 Sitar M G# 6 41 G42 Viola C Tom Lo F F1 105 G106 Banjo M A6 42 G43 Cello C Tite HH F F# G107 Shamisen M A# 6 43 G44 Contra Bass C Tom Lo F G1 107 G108 Koto M B6 44 G45 Tremolo Strings C Pedal HH F G# G109 Kalimba M C7 45 G46 Pizzicato F Tom Lo F A1 109 G110 Scotland C C# 7 46 G47 Harp M Open HH F A# G111 Fiddle C D7 47 G48 Timpani C Tom Hi F B1 111 G112 Shanai C D# 7 48 G49 Marcato C Tom Hi F C2 112 G113 Metal Bell M E7 49 G50 Slow String C Crash Cym M C# G114 Agogo M F7 50 G51 Annalog Pad C Tom Hi F D2 114 G115 Steel Drums M F# 7 51 G52 String Pad C Ride Edge F D# G116 Wood Block M G7 52 G53 Choir C China Cym M E2 116 G117 Taiko M G# 7 53 G54 Doo Voice C Ride Cup F F2 117 G118 Tom M A7 54 G55 Voices C Tambourine F F# G119 Synth Tom M A# 7 55 G56 Orch Hot F Splash Cym M G2 119 G120 Rev Cymbol M B7 56 G57 Trumpet C Cowbell F G# G121 Fret Noise M C8 57 G58 Trombone C Crash Cym F A2 121 G122 Noise Cliff M C# 8 58 G59 Tuba C Vibraslap M A# G123 Seashore M D8 59 G60 Muted Trumpet C Ride Cym 1 M B2 123 G124 Birds C D# 8 60 G61 French Horn C Hi Bongo F C3 124 G125 Telephone C E8 61 G62 Brass C Lo Bongo F C# G126 Helicopter C F8 62 G63 Syn Brass 1 C Mute Conga F D3 126 G127 Stadium C F# 8 63 G64 Syn Brass 2 C Open Conga F D# G128 Gun Shot M G8 5

MIDI Basics. MIDI Internal Details. CHAPTER e1

MIDI Basics. MIDI Internal Details. CHAPTER e1 CHAPTER e1 MIDI Basics MIDI Internal Details MIDI stands for Musical Instrument Digital Interface. It was developed by a consortium of musical product manufacturers to create a common language and protocol

More information

DD-402 E-Drum Set. Users manual

DD-402 E-Drum Set. Users manual DD402 EDrum Set Users manual 00028064 Version 2/202 THE FCC REGULATIN WARNING (for USA) This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part

More information

25/37. User Guide. Wireless USB MIDI Controller. Wireless Technology by D E S I G N

25/37. User Guide. Wireless USB MIDI Controller. Wireless Technology by D E S I G N MIDAIR 25/37 Wireless USB MIDI Controller User Guide Wireless Technology by D E S I G N G R O U P English............................................................... 3 1 Introduction........................................................

More information

Trinity College London

Trinity College London Trinity College London The Queensland Curriculum and Assessment Authority (QCAA) has recognised the following studies as contributing studies for the (QCE). The QCAA has no responsibility regarding implementation

More information

10 The Secret Life of ACID MIDI

10 The Secret Life of ACID MIDI The Secret Life of ACID MIDI Chapter 10 203 10 The Secret Life of ACID MIDI CHAPTER 10 The addition of MIDI capabilities to the 3.0 version of an already formidable multimedia application is amazing. In

More information

Sound sets in Sibelius 3

Sound sets in Sibelius 3 Sound sets in Sibelius 3 For advanced users only! Sibelius 3 includes a sound set editor within the main application (see Edit Sound Sets in the Sibelius 3 User Guide for details). The sound set editor

More information

Studio Orchestra Seating

Studio Orchestra Seating Studio Orchestra Seating September 008 Abstract This document presents the seating arrangement for a studio orchestra. Considerations and favourable aspects will be discussed. As an example, details will

More information

Easy-to-Use 49-Note USB Keyboard. User Guide. Downloaded from www.manualslib.com manuals search engine

Easy-to-Use 49-Note USB Keyboard. User Guide. Downloaded from www.manualslib.com manuals search engine Easy-to-Use 49-Note USB Keyboard User Guide Table of Contents Introduction. 3 KeyRig 49 Keyboard Features. 3 Keyboard. 3 What s in the Box?. 3 Your M-Audio KeyRig 49 bundle should contain the following

More information

National 5 Music Course Assessment Specification (C750 75)

National 5 Music Course Assessment Specification (C750 75) National 5 Music Course Assessment Specification (C750 75) Valid from August 2013 This edition: April 2015, version 2.0 This specification may be reproduced in whole or in part for educational purposes

More information

Important Safety Instructions

Important Safety Instructions OWNER S MANUAL 2 G - D E C Important Safety Instructions This symbol warns the user of dangerous voltage levels localized within the enclosure of the unit. This symbol advises the user to read all accompanying

More information

INSTRUCTIONS FOR USE AND MAINTENANCE

INSTRUCTIONS FOR USE AND MAINTENANCE Devodama Srl Sede operativa: via Baldissero n. 21-10080 Vidracco (TO) P.I.V.A.: IT10742430019 Tel +39 0125 789945 e-mail: musicoftheplants@devodama.it Sito web: www.musicoftheplants.com INSTRUCTIONS FOR

More information

Standard 1: Skills and Techniques 1

Standard 1: Skills and Techniques 1 1 Standard 1: Skills and Techniques 1 CB.1.1 Instrument Knowledge Skills CB.1.1.1 Instrument in good playing condition- including proper assembly, reed care, and cleaning. CB.1.2 Playing Posture Skills

More information

Owner s Manual. Ensemble, Ensemble Division Copyright 2004 Allen Organ Company All Rights Reserved

Owner s Manual. Ensemble, Ensemble Division Copyright 2004 Allen Organ Company All Rights Reserved Owner s Manual Ensemble, Ensemble Division Ensemble, Ensemble Division Copyright 2004 Allen Organ Company All Rights Reserved AOC P/N 033-00094 Revised 8/2004 CONTENTS I. GENERAL INFORMATION...1 II. FRONT/BACK

More information

Frequently Asked Questions: Applied Music Lessons

Frequently Asked Questions: Applied Music Lessons Frequently Asked Questions: Applied Music Lessons Do I need to have experience playing an instrument to take lessons? No! We welcome aspiring musicians of all levels of experience. What instruments can

More information

Associazione Spazi Musicali 1st Composition for Youth Orchestra Competition 2014 "Cav. Angelo Rizzardi"

Associazione Spazi Musicali 1st Composition for Youth Orchestra Competition 2014 Cav. Angelo Rizzardi Associazione Spazi Musicali 1st Composition for Youth Orchestra Competition 2014 "Cav. Angelo Rizzardi" Article 1 Associazione Spazi Musicali, in collaboration with the municipality of Mazzano, announces

More information

DIGITAL DRUM. Instruction Manual

DIGITAL DRUM. Instruction Manual DIGITAL DRUM Instruction Manual Thank you for purchasing this digital drum module. The drum module has been developed to act and play like a drum set but with greater ease. Before you use the instrument,

More information

Full instruments list:

Full instruments list: Full instruments list: Classic Grand Piano 1. Classic Grand Piano 2. Classic Grand Piano Bright 3. Classic Grand Piano Damped Drums Machines 1. Acetone Rhythm Ace 2. Akai XE8 3. Akai XR10 4. Alesis HR16

More information

Music in the Schools Teacher Resource Guide

Music in the Schools Teacher Resource Guide Music in the Schools Teacher Resource Guide The Hamilton Philharmonic orchestra is committed to providing students in our community with informative, stimulating and entertaining musical performances.

More information

TRADUZIONE IN INGLESE degli

TRADUZIONE IN INGLESE degli TRADUZIONE IN INGLESE degli ORDINAMENTI DIDATTICI DEI CORSI DI STUDIO DEI CONSERVATORI DI MUSICA DEPARTMENT OF STRINGS SCHOOL OF HARP HARP Students completing required courses for the first level Academic

More information

ATSAM2195. User Guide

ATSAM2195. User Guide ATSAM2195... User Guide Table of Contents Section 1 Parallel and Serial MIDI Modes... 1-1 1.1 Serial and Parallel Modes... 1-1 1.1.1 Serial Mode... 1-1 1.1.2 Parallel Mode... 1-2 Section 2 Configuration

More information

Basic Music Theory for Junior Cert.

Basic Music Theory for Junior Cert. 1 Reading Different Clefs Basic Music Theory for Junior Cert. The most commonly used clefs are the treble and bass. The ability to read both of these clefs proficiently is essential for Junior Cert. Music.

More information

ROLAND GR-55 GUITAR SYNTHESIZER TRAINING GUIDE

ROLAND GR-55 GUITAR SYNTHESIZER TRAINING GUIDE ROLAND GR-55 GUITAR SYNTHESIZER TRAINING GUIDE Contents 1. FEATURES 2. QUICK DEMO 3. GOING DEEP 4. FIVE FEATURES TO KNOW and SHOW 5. ACCESSORIES 6. GR-55 DETAILS 1. FEATURES Four sound sources: two sets

More information

ROCK BAND 3 WIRELESS KEYBOARD:

ROCK BAND 3 WIRELESS KEYBOARD: Music Systems, Inc. ROCK BAND 3 WIRELESS KEYBOARD: MIDI User Guide HMXHW1023 REVISION: 01 Date: 07/16/10 Introduction... 3 What is MIDI?... 3 Features... 3 Getting Started... 4 Control Surface Functions

More information

Curriculum Vita. Degree Educational Institution Year Earned. Athens, Ga. 30602. Athens, Ga. 30602. Brevard, N.C. 28768. Lewis Nielson Leonard Ball

Curriculum Vita. Degree Educational Institution Year Earned. Athens, Ga. 30602. Athens, Ga. 30602. Brevard, N.C. 28768. Lewis Nielson Leonard Ball Curriculum Vita Personal Timothy D. Crist 4305 Jenni Lane Jonesboro, AR. 72404 870.935.2071 email (work): tcrist@astate.edu Major Field: Composition/Theory Primary Instrument: Guitar Education Degree Educational

More information

WELSH S SYNTHESIZER COOKBOOK

WELSH S SYNTHESIZER COOKBOOK WELSH S SYNTHESIZER COOKBOOK By Fred Welsh 3d Edition Welsh s Synthesizer Cookbook Copyright 2006 Fred Welsh All rights reserved No part of this publication may be reproduced or transmitted in any form

More information

RECRUITMENT AND BALANCED INSTRUMENTATION by Vince Corozine

RECRUITMENT AND BALANCED INSTRUMENTATION by Vince Corozine RECRUITMENT AND BALANCED INSTRUMENTATION by Vince Corozine Most successful band programs do not appear by chance but are the result of careful planning, teaching experience, and professional expertise.

More information

CO-CURRICULAR MUSIC AT ST PIUS X COLLEGE

CO-CURRICULAR MUSIC AT ST PIUS X COLLEGE CO-CURRICULAR PERFORMING ARTS HANDBOOK 2016 CO-CURRICULAR MUSIC AT ST PIUS X COLLEGE St Pius X College has an outstanding Performing Arts Department which has been in operation for many years. Music is

More information

Core Instrumentation of the Typical American Community Concert Band: An Approach to Scoring Guidelines for Composers and Arrangers

Core Instrumentation of the Typical American Community Concert Band: An Approach to Scoring Guidelines for Composers and Arrangers Core Instrumentation of the Typical American Community Concert Band: 1 Approach An Approach to Scoring Guidelines for Composers and Arrangers Findings based on a 2012 Online survey by Composer/Conductor

More information

General Music Programme Syllabus (Primary/Secondary)

General Music Programme Syllabus (Primary/Secondary) GENERAL MUSIC PROGRAMME SYLLABUS General Music Programme Syllabus (Primary/Secondary) Curriculum Planning & Development Division Ministry of Education Singapore All Rights Reserved Year of Implementation:

More information

Ted Brown Music Instrument Repair Price List 2015

Ted Brown Music Instrument Repair Price List 2015 Ted Brown Music Instrument Repair Price List 2015 Prices include a $2.00 Shop Supply Fee The minimum shop charge is $22.00 Estimates are $15.00 All prices subject to change without notice BRASS PLAYING

More information

MUSIC. BACHELOR OF ARTS (MUSIC) BA (Music)

MUSIC. BACHELOR OF ARTS (MUSIC) BA (Music) MUSIC Subject to approval the BA Mus [1330] as presented in the Undergraduate Yearbook up to 2013 is phased out as from 2014. New students will register according to the exposition below. Transitional

More information

The Orchestra Woodwind and Brass

The Orchestra Woodwind and Brass The Orchestra 2009 29 minutes Program Synopsis Have you ever wondered what instruments make up an orchestra? In this program, Bobby, a young aspiring musician is introduced to different elements, roles

More information

Tempest Manual Addendum

Tempest Manual Addendum Tempest Manual Addendum OS Version 1.1 This document details changes and additions to Tempest s operating system that are not in the Tempest Operation Manual. Manual Errata Assignment of an expression

More information

INSTRUMENTAL STUDIES & CO- CURRICULAR MUSIC PROGRAM

INSTRUMENTAL STUDIES & CO- CURRICULAR MUSIC PROGRAM INSTRUMENTAL STUDIES & CO- CURRICULAR MUSIC PROGRAM To inspire, motivate and foster a deep love of music in all students INDIVIDUAL LESSONS AND ENSEMBLE GROUP OPPORTUNITIES & HOW TO BECOME INVOLVED THREE

More information

Created by Impact Soundworks - http://impactsoundworks.com/

Created by Impact Soundworks - http://impactsoundworks.com/ Designed by Dickie Chapin & Andrew Aversa Kontakt Programming by Iain Morland & Andrew Aversa Editing by Anthony Mena, Iain Morland, Andrew Aversa & Elan Hickler Created by Impact Soundworks - http://impactsoundworks.com/

More information

Get into music. with Havering Music School. Tuition from only 6.50 per week. www.havering.gov.uk. avering Music School

Get into music. with Havering Music School. Tuition from only 6.50 per week. www.havering.gov.uk. avering Music School Get into music with Havering Music School Tuition from only 6.50 per week www.havering.gov.uk avering Music School About Us Havering Music School is the preferred provider of instrumental tuition to schools

More information

Intonation Tendencies of Band Instruments. Whitney Brainard MUS 461 Winter 2011

Intonation Tendencies of Band Instruments. Whitney Brainard MUS 461 Winter 2011 + Intonation Tendencies of Band Instruments Whitney Brainard MUS 461 Winter 2011 + Daily tuning In band, make sure you warm up BEFORE tuning. If you are waiting to perform (ex. Festival), have students

More information

Creative Art Electives 45 minutes (choose one or more)

Creative Art Electives 45 minutes (choose one or more) Summer 2013 Music and Arts Program For students entering 4 th -12 th Grade July1st July 26th (School closing: Thursday, July 4) Location: Paramus High School Starting time: 9:00 am (Grades 4-8), 10:00

More information

IMPROVING TODAY S PERCUSSION SECTION

IMPROVING TODAY S PERCUSSION SECTION Commander s Clinics LT COL STEVEN GRIMO Commander USAF Band of Mid-America Scott Air Force Base IMPROVING TODAY S PERCUSSION SECTION United States Air Force Band of Mid-America 900 Chapman Drive Scott

More information

A concert introduction will be given at 13:30 by musicologist Maarten Brandt.

A concert introduction will be given at 13:30 by musicologist Maarten Brandt. PressRelease OnSunday,November29 th theyoungneweuropeanensemblewillmakeits debutforthedr.antonphilipszaalinthehague,withaperformanceinthe NieuweKerkentitled ScandinavianImagery.ThisistheEnsemble sfirstconcert

More information

DIGITAL MUSIC DAY 1 WHAT IS SOUND? ANALOG AND DIGITAL EARLY RECORDING WAX FOR YOUR EARS ROUND BUT FLAT WIRE AND TAPE PURE SOUND

DIGITAL MUSIC DAY 1 WHAT IS SOUND? ANALOG AND DIGITAL EARLY RECORDING WAX FOR YOUR EARS ROUND BUT FLAT WIRE AND TAPE PURE SOUND DIGITAL MUSIC DAY 1 WHAT IS SOUND? 1. Making a sound playing a musical instrument, moves the surrounding the instrument. 2. Making a sound sends out air which hit your ears. 3. Waves of changing air pressure

More information

Music Department Handbook

Music Department Handbook 2016 Music Handbook Music Department Handbook Welcome to Music at St Hilda s. This booklet will give you an overview of the diversity of instrumental lessons and music opportunities available to students.

More information

Sound and Music. Drum. Drum. Guitar. Flute. Guitar. Trumpet. Flute. Trumpet

Sound and Music. Drum. Drum. Guitar. Flute. Guitar. Trumpet. Flute. Trumpet Sound and Music Look at the drawings above. Read the names of the parts of each instrument. Answer the following questions. 1. Which part creates the sound for each of these instruments? Drum Guitar Flute

More information

SYMPHONY #9 ANTONIN DVORAK

SYMPHONY #9 ANTONIN DVORAK SYMPHONY #9 ANTONIN DVORAK Dvorak s Symphony #9 is one of the most beloved works in the symphonic repertoire. Having had the experience of conducting it many times, I have accumulated a list of ideas,

More information

Creative Physical Modeling Toolbox for Reaktor 5

Creative Physical Modeling Toolbox for Reaktor 5 Creative Physical Modeling Toolbox for Reaktor 5 By Harm Visser (www.hvsynthdesign.com) Introduction This PhM Toolbox is based on so called Modal Synthesis. That is to say: it is based on the exciting

More information

Graham s Guide to Synthesizers (part 1) Analogue Synthesis

Graham s Guide to Synthesizers (part 1) Analogue Synthesis Graham s Guide to Synthesizers (part ) Analogue Synthesis Synthesizers were originally developed to imitate or synthesise the sounds of acoustic instruments electronically. Early synthesizers used analogue

More information

Andrew Rindfleisch. Circus Music. Do Not Copy. for Chamber Orchestra

Andrew Rindfleisch. Circus Music. Do Not Copy. for Chamber Orchestra Andrew Rindfleisch Circus Music for Chamber Orchestra Circus Music (999) for chamber orchestra duration: minutes Andrew Rindfleisch Manzo Music This is a Transposed Score Instrumentation Piccolo Flute

More information

East Sussex Music Summer School 2016. Course Information

East Sussex Music Summer School 2016. Course Information East Sussex Music Summer School 2016 Course Information 1a Junior Violin (2 days) This course is aimed at pupils in year 3 and above pupils should be between A and D major in Suzuki Violin Book 1 and have

More information

Orchestral Combos with EWQLSO

Orchestral Combos with EWQLSO Orchestral Combos with EWQLSO by Piotr Musiał Note: This tutorial was made using Cubase 4 Studio and Kontakt 3 Hi. My name is Piotr Musiał and I welcome You to my next tutorial! Being quite intrigued with

More information

Data List Datenliste Liste des données Lista de datos

Data List Datenliste Liste des données Lista de datos Data List Datenliste Liste des données Lista de datos Sample Score for Smart Chord function Notenbeispiel für die Smart-Chord-Funktion Exemple de partition pour la fonction Smart Chord Partitura sencilla

More information

Sandbach High School and Sixth Form College Making Music!

Sandbach High School and Sixth Form College Making Music! Sandbach High School and Sixth Form College Making Music! INSTRUMENTAL LESSONS 2014-2015 INSTRUMENTAL LESSONS AVAILABLE Approximately 150 pupils each year take instrumental lessons at Sandbach High School

More information

Cheat Sheet for Local Church Audio Training Sound Essentials. Kick:

Cheat Sheet for Local Church Audio Training Sound Essentials. Kick: Cheat Sheet for Local Church Audio Training Sound Essentials Thank you for attending this session and supporting your church s ministry. I believe that, as a sound technician, you are a vital part of the

More information

COTHAM SCHOOL MUSIC DEPARTMENT. Instrumental Tuition A Guide for Parents

COTHAM SCHOOL MUSIC DEPARTMENT. Instrumental Tuition A Guide for Parents COTHAM SCHOOL MUSIC DEPARTMENT Instrumental Tuition A Guide for Parents We believe that learning to play a musical instrument offers a child a great deal more than musical skills. It builds self-discipline

More information

A series of music lessons for implementation in the classroom F-10.

A series of music lessons for implementation in the classroom F-10. A series of music lessons for implementation in the classroom F-10. Conditions of Use The materials housed on this page are freely available for download and educational use. These resources were developed

More information

The Physics of Music - Physics 15 University of California, Irvine. Instructor: David Kirkby dkirkby@uci.edu. Lecture 14.

The Physics of Music - Physics 15 University of California, Irvine. Instructor: David Kirkby dkirkby@uci.edu. Lecture 14. Miscellaneous Office hours this week are Wed 9-10am, 3-4pm. Lecture 14 Percussion Instruments Keyboard Instruments Office hours next week are Wed 2-4pm. There is a typo in 2(b) of Problem Set #6. The length

More information

Rider Updated 2015. - Audio Requirements - Input List - Risers - Stage Plot - Backline Requirements - Room List - Dressing Room

Rider Updated 2015. - Audio Requirements - Input List - Risers - Stage Plot - Backline Requirements - Room List - Dressing Room Rider Updated 2015 - Audio Requirements - Input List - Risers - Stage Plot - Backline Requirements - Room List - Dressing Room Sound Engineer- Tony Lopez tonylopezgdz@yahoo.es U.S Managment Javier Otero

More information

Data List Datenliste Liste des données Lista de datos

Data List Datenliste Liste des données Lista de datos Data List Datenliste Liste des données Lista de datos Sample Score for Smart Chord function Notenbeispiel für die Smart-Chord-Funktion Exemple de partition pour la fonction Smart Chord Partitura sencilla

More information

Music at Cashmere. Opportunities in Music: Curriculum Music Music Activities Music Tuition Music Tours Musicals & Concerts Yr.

Music at Cashmere. Opportunities in Music: Curriculum Music Music Activities Music Tuition Music Tours Musicals & Concerts Yr. Music at Cashmere Opportunities in Music: Curriculum Music Music Activities Music Tuition Music Tours Musicals & Concerts Yr. 9 Scholarship Musical opportunities for everyone, striving for excellence.

More information

Mathematical Harmonies Mark Petersen

Mathematical Harmonies Mark Petersen 1 Mathematical Harmonies Mark Petersen What is music? When you hear a flutist, a signal is sent from her fingers to your ears. As the flute is played, it vibrates. The vibrations travel through the air

More information

Understanding Musical Concepts National 3, 4 & 5. Performing Listening Composing

Understanding Musical Concepts National 3, 4 & 5. Performing Listening Composing Understanding Musical Concepts National, & Performing Listening Composing Your coursework is made up of these learning activities and the musical concepts in this dictionary will be present all of these

More information

DAME ALICE OWEN S SCHOOL. Music Department A Guide to Instrumental Lessons. Director of Music: Mr S Werner B.Mus., B.A

DAME ALICE OWEN S SCHOOL. Music Department A Guide to Instrumental Lessons. Director of Music: Mr S Werner B.Mus., B.A DAME ALICE OWEN S SCHOOL Music Department A Guide to Instrumental Lessons Director of Music: Mr S Werner B.Mus., B.A Dear Parent / Carer We are delighted that your child is learning a musical instrument

More information

Copland Fanfare for the Common Man 0, 0, 0, 0 4, 3, 3, 1 timp, 2perc* *tam-tam, bass dr

Copland Fanfare for the Common Man 0, 0, 0, 0 4, 3, 3, 1 timp, 2perc* *tam-tam, bass dr FAMILY CONCERT The Independence School Band Dan Kitching, Director Salesianum School Marching Band Brian Cox, Director Copland Fanfare for the Common Man 0, 0, 0, 0 4, 3, 3, 1 timp, 2perc* *tam-tam, bass

More information

2017 NAfME All-Northwest Jazz Audition Materials Saxophones and Brass

2017 NAfME All-Northwest Jazz Audition Materials Saxophones and Brass 2017 NAfME All-Northwest Jazz Audition Materials Saxophones and Brass Track 1 Track 2 Track 3 Basic Audition The following three tracks are required of all wind applicants ALTO SAXOPHONE (pages 5-6) TENOR

More information

Modeling Affective Content of Music: A Knowledge Base Approach

Modeling Affective Content of Music: A Knowledge Base Approach Modeling Affective Content of Music: A Knowledge Base Approach António Pedro Oliveira, Amílcar Cardoso Centre for Informatics and Systems of the University of Coimbra, Coimbra, Portugal Abstract The work

More information

INTRODUCTION. 1 REGISTRATION. 1 FRONT PANEL OVERVIEW. 2 REAR PANEL OVERVIEW. 2 HOOKUP DIAGRAM. 3 COMPUTER INSTALLATION. 4 GETTING STARTED USING KITS.

INTRODUCTION. 1 REGISTRATION. 1 FRONT PANEL OVERVIEW. 2 REAR PANEL OVERVIEW. 2 HOOKUP DIAGRAM. 3 COMPUTER INSTALLATION. 4 GETTING STARTED USING KITS. REFERENCE MANUAL TABLE OF CONTENTS INTRODUCTION... 1 REGISTRATION... 1 FRONT PANEL OVERVIEW... 2 REAR PANEL OVERVIEW... 2 HOOKUP DIAGRAM... 3 COMPUTER INSTALLATION... 4 GETTING STARTED USING KITS... 6

More information

Students' guide: Area of study 1 (The Western classical tradition 1650-1910)

Students' guide: Area of study 1 (The Western classical tradition 1650-1910) Students' guide: Area of study 1 (The Western classical tradition 1650-1910) This resource gives students a breakdown of Haydn's Symphony 101 in D major 'The Clock' movt. 2. It also offers guidance on

More information

BACHELOR OF MUSIC, MAJOR IN MUSIC WITH SPECIALIZATION: VOCAL PERFORMANCE (BM MPV)

BACHELOR OF MUSIC, MAJOR IN MUSIC WITH SPECIALIZATION: VOCAL PERFORMANCE (BM MPV) Sam Houston State University 1 BACHELOR OF MUSIC, MAJOR IN MUSIC WITH SPECIALIZATION: VOCAL PERFORMANCE (BM MPV) Bachelor of Music Music Core MUSI 1222 Theory Of Music I (SCH 2) 2 MUSI 1223 Theory Of Music

More information

FAQs about Music Qualifications

FAQs about Music Qualifications FAQs about Music Qualifications BACK TO CONTENTS Trinity College London 89 Albert Embankment London SE1 7TP UK T +44 (0)20 7820 6100 F +44 (0)20 7820 6161 E music@trinitycollege.co.uk www.trinitycollege.co.uk

More information

Youngstown State University FTE Comparison Fall 2012 vs Fall 2011 Fall 2012 Fall 2011

Youngstown State University FTE Comparison Fall 2012 vs Fall 2011 Fall 2012 Fall 2011 Business Administration ACCOUNTING & FINANCE Accounting 174.13 3.60 177.73 204.73 5.33 210.07 199.53 4.67 204.20 Finance 58.73 12.60 71.33 62.07 11.27 73.33 61.20 11.33 72.53 ACCOUNTING & FINANCE Total

More information

RHEMA BIBLE TRAINING COLLEGE

RHEMA BIBLE TRAINING COLLEGE RHEMA BIBLE TRAINING COLLEGE Mailing Address: P.O. Box 50126, Tulsa OK 74150-0126 Street Address: 1025 W. Kenosha, Broken Arrow, OK 74012 FOR OFFICE USE ONLY PC ED AF A Application for: 2nd Year 3rd Year

More information

STRINGS OF THE ORCHESTRA WORKSHEET

STRINGS OF THE ORCHESTRA WORKSHEET STRINGS OF THE ORCHESTRA WORKSHEET THE VIOLIN The development of the modern violin stems from of instruments available in Europe during the middle Ages. Some historians even suggest that the origins of

More information

Neil A. Kjos Music Company www.kjos.com

Neil A. Kjos Music Company www.kjos.com 2 Getting Started What is the Interactive Practice Studio? The Interactive Practice Studio (IPS) is a new environment designed to make student practice more fun and productive and to help teachers integrate

More information

KODÁLY METHOD AND ITS INFLUENCE ON TEACHING WIND INSTRUMENTS IN HUNGARY

KODÁLY METHOD AND ITS INFLUENCE ON TEACHING WIND INSTRUMENTS IN HUNGARY KODÁLY METHOD AND ITS INFLUENCE ON TEACHING WIND INSTRUMENTS IN HUNGARY Jozsef Csikota Midwest Clinic Chicago, Illinois U.S.A. 15th December 2004 KODÁLY METHOD IN HUNGARIAN SCHOOLS In Hungary, every student

More information

BACHELOR OF MUSIC, MAJOR IN MUSIC THERAPY

BACHELOR OF MUSIC, MAJOR IN MUSIC THERAPY Sam Houston State University 1 BACHELOR OF MUSIC, MAJOR IN MUSIC THERAPY Bachelor of Music, Major in Music Therapy The music therapy curriculum prepares the student for a career as a music therapist and

More information

CUSTOM CLASSIC SERIES TIMPANI CCT 6023F/S

CUSTOM CLASSIC SERIES TIMPANI CCT 6023F/S ważny od: 17/01/2011 Detaliczny cennik produktów VANCORE Model Opis Detal PLN CUSTOM CLASSIC SERIES TIMPANI CCT 6023F/S Fiberforce Standard 23" c - b CCT 6026F/S Fiberforce Standard 26" F - g CCT 6029F/S

More information

Adapting Musical Activities for Persons with Disabilities

Adapting Musical Activities for Persons with Disabilities Adapting Musical Activities for Persons with Disabilities Musical activities can be a fulfilling part of any person s day, and may enhance many important aspects of an individual s emotional, cognitive

More information

Clair de Lune, from Suite bergamasque (1890) (orch. Stokowski) Concerto No. 23 in A Major for Piano and Orchestra, K. 488 (1786)

Clair de Lune, from Suite bergamasque (1890) (orch. Stokowski) Concerto No. 23 in A Major for Piano and Orchestra, K. 488 (1786) November 28-30, 2014 Bramwell Tovey, conductor Orion Weiss, piano Women of the Kansas City Symphony Chorus, Charles Bruffy, Chorus Director Debussy Clair de Lune, from Suite bergamasque (1890) (orch. Stokowski)

More information

Catch the Calypso Beat and Put it in Your Feet! A Smithsonian Folkways Lesson Designed by: Katie Wood Seattle Public Schools, Seattle WA

Catch the Calypso Beat and Put it in Your Feet! A Smithsonian Folkways Lesson Designed by: Katie Wood Seattle Public Schools, Seattle WA Catch the Calypso Beat and Put it in Your Feet! A Smithsonian Folkways Lesson Designed by: Katie Wood Seattle Public Schools, Seattle WA Summary: In this lesson students will travel to the island of Trinidad

More information

LIVE ORCHESTRAL SCREENINGS OF CHAPLIN FILMS. Films produced, directed, and written by Charles Chaplin. Music composed by Charles Chaplin

LIVE ORCHESTRAL SCREENINGS OF CHAPLIN FILMS. Films produced, directed, and written by Charles Chaplin. Music composed by Charles Chaplin LIVE ORCHESTRAL SCREENINGS OF CHAPLIN FILMS Films produced, directed, and written by Charles Chaplin Music composed by Charles Chaplin 1 The scores, orchestral parts and films currently available for live

More information

Discover boundless harmonies.

Discover boundless harmonies. Discover boundless harmonies. Scholarship Instruction Reward Mentoring Practice Collaboration Leadership Cello Experimentation Violin Performance Arrangement Music School Perform boundless symphonies.

More information

CineSymphony LITE SONY Pictures Scoring Stage Dennis Sands CineSymphony LITE

CineSymphony LITE SONY Pictures Scoring Stage Dennis Sands CineSymphony LITE Cinesamples is proud to present our new essential orchestral library for Kontakt (Player), CineSymphony LITE. Recorded at the world famous SONY Pictures Scoring Stage in Los Angeles, and mixed by veteran

More information

How To Use A Qsc Touchmix Mixer

How To Use A Qsc Touchmix Mixer Application Guide for Musicians & Bands DON T BE FOOLED BY THE SMALL PACKAGE. Inside each QSC TouchMix mixer is a versatile and powerful set of features and functions the equivalent of a large conventional

More information

International Academic Year

International Academic Year HAMBURGER KONSERVATORIUM AKADEMIE & MUSIKSCHULE STUDIES International Academic Year WELCOME TO MUSIC STUDIES AT THE HAMBURG CONSERVATORY Study Europe s music in Germany! Hamburg is the musical centre of

More information

International Composition Competition for Youth Orchestra Bruno Maderna 2014 Fifth Edition

International Composition Competition for Youth Orchestra Bruno Maderna 2014 Fifth Edition International Composition Competition for Youth Orchestra Bruno Maderna 2014 Fifth Edition Associazione Ecce Gratum Via Amalfi, 19 31100 Treviso Italia Composition for Youth Orchestra Duration: between

More information

PASSPORT PERFORMANCE STUDY GUIDE

PASSPORT PERFORMANCE STUDY GUIDE PASSPORT PERFORMANCE STUDY GUIDE ABOUT LAPIS LAPIS is the creation of Sitarist & Tabla Player MOHAMED ASSANI and Music Producer & Composer RUP SIDHU. They met while playing a Dhiwali festival - Rup with

More information

6 th GRADE SUPPLY LIST FOR 2015-2016 LANGUAGE ARTS U.S. HISTORY MATH SCIENCE

6 th GRADE SUPPLY LIST FOR 2015-2016 LANGUAGE ARTS U.S. HISTORY MATH SCIENCE 6 th GRADE SUPPLY LIST FOR 2015-2016 LANGUAGE ARTS Pencils/Pens Erasers Colored Pencils Glue Sticks (10 for the year) Scissors Composition Notebook One inch binder with dividers Sturdy folder One 2 pocket

More information

MUSIC COURSES UNDERGRADUATE FACULTY. Explanation of Course Numbers. Bachelor's program. Performance Study

MUSIC COURSES UNDERGRADUATE FACULTY. Explanation of Course Numbers. Bachelor's program. Performance Study MUSIC The music program within the Columbian College of Arts and Sciences offers a broad base for understanding music as an art form and as a social, economic, and political practice. All students, regardless

More information

On This Bright Morning

On This Bright Morning DAVID MASLANKA On This Bright Morning FOR WIND ENSEMBLE ON THIS BRIGHT MORNING for Wind Ensemble DAVID MASLANKA On This Bright Morning FOR WIND ENSEMBLE (2013) SCORE IN C MASLANKA PRESS NEW YORK Copyright

More information

GCSE Music Revision notes

GCSE Music Revision notes Pavan and Galliard - 8 Key Facts GCSE Music Revision notes 1. Court Dance Danced only by the nobility not us commoners danced at big formal parties 2. Renaissance Period - time of Queen Elizabeth I (Shakespeare

More information

GCSE Music. DR SMITH Definitions. Elements of Music. Listening and Appraising Support

GCSE Music. DR SMITH Definitions. Elements of Music. Listening and Appraising Support GCSE Music DR SMITH Definitions Elements of Music & Listening and Appraising Support D R S M I T H DR SMITH Definitions Dynamics Volume in music e.g. Loud (Forte) & Quiet (Piano). Duration The length of

More information

M a n u a l O R C H E S T R A L T O O L S. C O M. 2011 by OrchestralTools Schwarzer & Mantik GbR

M a n u a l O R C H E S T R A L T O O L S. C O M. 2011 by OrchestralTools Schwarzer & Mantik GbR M a n u a l O R C H E S T R A L T O O L S. C O M 2011 by OrchestralTools Schwarzer & Mantik GbR About Symphonic Sphere (SSP) When dreams transform into possibilities There are some nice orchestrational

More information

Waves Trans-X. Software Audio Processor. User s Guide

Waves Trans-X. Software Audio Processor. User s Guide Waves Trans-X Software Audio Processor User s Guide Waves Trans-X software guide page 1 of 8 Chapter 1 Introduction and Overview The Waves Trans-X transient processor is a special breed of dynamics processor

More information

ÂØÒňΠMusic Workstation July 9, 1997

ÂØÒňΠMusic Workstation July 9, 1997 XP-50 ÂØÒňΠMusic Workstation July 9, 1997 Supplemental Notes XP-50 Frequently Asked Questions This document is a compilation of questions and answers commonly asked of the Roland Technical Support department.

More information

Symphony No 1 (Asperger s) Dedicated to. All those who offered me grace over the years. The teachers The students The friends My family

Symphony No 1 (Asperger s) Dedicated to. All those who offered me grace over the years. The teachers The students The friends My family Symphony No 1 (Asperger s) Dedicated to All those who offered me grace over the years The teachers The students The friends My family Who could have made my life miserable Given all the mistakes I made

More information

JOHN A. LOGAN COLLEGE N. Arnett SM 14. MUS 111 A-Z MUS 213 A-Z APPLIED MUSIC 1-2 cr. (0-2, 0-4)

JOHN A. LOGAN COLLEGE N. Arnett SM 14. MUS 111 A-Z MUS 213 A-Z APPLIED MUSIC 1-2 cr. (0-2, 0-4) JOHN A. LOGAN COLLEGE N. Arnett SM 14 MUS 111 A-Z MUS 213 A-Z APPLIED MUSIC 1-2 cr. (0-2, 0-4) COURSE DESCRIPTION: Private lessons on any classical instrument are available through John A. Logan College.

More information

REPLIKA SOUND GUITAR LIBRARY FOR EXS24: ACOUSTIC GUITAR (STEEL STRINGS) FEATURE GUIDE

REPLIKA SOUND GUITAR LIBRARY FOR EXS24: ACOUSTIC GUITAR (STEEL STRINGS) FEATURE GUIDE REPLIKA SOUND GUITAR LIBRARY FOR EXS24: ACOUSTIC GUITAR (STEEL STRINGS) FEATURE GUIDE 1 TABLE OF CONTENTS Introduction 3 MIDI Requirements 3 Pack Contents 3 Articulation Key Switches 4 Articulation Descriptions

More information

Hobbayne Primary School Music Policy Statement Updated October 2011

Hobbayne Primary School Music Policy Statement Updated October 2011 Hobbayne Primary School Music Policy Statement Updated October 2011 Statement of Intent This policy outlines the purpose, nature and management of Music taught in the school. The main aim of Music Teaching

More information

v = λ f this is the Golden Rule for waves transverse & longitudinal waves Harmonic waves The golden rule for waves Example: wave on a string Review

v = λ f this is the Golden Rule for waves transverse & longitudinal waves Harmonic waves The golden rule for waves Example: wave on a string Review L 23 Vibrations and Waves [3] resonance clocks pendulum springs harmonic motion mechanical waves sound waves golden rule for waves musical instruments The Doppler effect Doppler radar radar guns Review

More information

MUSIC STUDIES (B.A.) Program Overview. Degree Offered. Music Studies Minor. Related Programs. Rider University 1. Contemp Music Experience

MUSIC STUDIES (B.A.) Program Overview. Degree Offered. Music Studies Minor. Related Programs. Rider University 1. Contemp Music Experience Rider University 1 MUSIC STUDIES (B.A.) Program Overview The music studies major prepares students for professional careers in music. Students will work closely with renowned faculty and recognized professionals

More information