Csound Csound-dev Csound-tekno Search About

[Csnd] Re: question about resonance

Date2010-05-10 03:23
From"Partev Barr Sarkissian"
Subject[Csnd] Re: question about resonance
Oh, good. That would make sense. At first glance I would've 
thought it a "k-rate" clock of some kind. In circuit schematics,
"clk" is the abreviation labelling for "clock", usually 
digital circuits. A "de-clicking envelope", great, didn't know 
there was ine til now. Definitely sounds like a uesful opcode.
I'll have to remember that one. Thanks Michael.

-Partev



===============================================================




--- kontrapunktstefan@googlemail.com wrote:

From: Stefan Thomas 
To: csound@lists.bath.ac.uk
Subject: [Csnd] Re: Re: question about resonance
Date: Sun, 9 May 2010 19:50:37 +0200

Sorry, I was stupid. I should have recognized, that there is a score
file!
By  the  way:  it  seems,  that  there  is  a  dead link to the
orchestra-file!

2010/5/9 Michael Gogins 

  Probably  a  "de-clicking  envelope." An envelope with a 2-3
  millisecond
  rise, a level sustain, and a 4-5 millisecond release to smooth off
  any
  sudden click at the beginning or end of the sound.
  Regards,
  Mike

On Sun, May 9, 2010 at 11:57 AM, Stefan Thomas
 wrote:
> Dear community,
> I wanted to try out, what Hans Mikelson writes about reconance
> There I've read:
>
> aout   =         aout*iamp*kdclk            ; Amplify
>
> Unfortunately I couldn't find out what the term kdclk could stand
for.
> It would be geat, if someone could give me a hint!
>
>
>

  --
  Michael Gogins
  Irreducible Productions
  http://www.michael-gogins.com
  Michael dot Gogins at gmail dot com

Send bugs reports to the Sourceforge bug tracker

https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To  unsubscribe,  send  email  sympa@lists.bath.ac.uk with body
"unsubscribe csound"




_____________________________________________________________
Netscape.  Just the Net You Need.


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2010-05-10 04:53
FromMichael Gogins
Subject[Csnd] Re: Re: question about resonance
It's not an opcode, you just use a linseg to create this envelope.
What I do is something like this (i use arate not krate just in case):

iattack = 0.002
isustain = p3
irelease = 0.005
p3 = iattack + isustain + irelease
adeclick linseg 0.0, iattack, 1.0, isustain, 1.0, irelease, 0.0

Regards,
Mike

On Sun, May 9, 2010 at 10:23 PM, Partev Barr Sarkissian
 wrote:
> Oh, good. That would make sense. At first glance I would've
> thought it a "k-rate" clock of some kind. In circuit schematics,
> "clk" is the abreviation labelling for "clock", usually
> digital circuits. A "de-clicking envelope", great, didn't know
> there was ine til now. Definitely sounds like a uesful opcode.
> I'll have to remember that one. Thanks Michael.
>
> -Partev
>
>
>
> ===============================================================
>
>
>
>
> --- kontrapunktstefan@googlemail.com wrote:
>
> From: Stefan Thomas 
> To: csound@lists.bath.ac.uk
> Subject: [Csnd] Re: Re: question about resonance
> Date: Sun, 9 May 2010 19:50:37 +0200
>
> Sorry, I was stupid. I should have recognized, that there is a score
> file!
> By  the  way:  it  seems,  that  there  is  a  dead link to the
> orchestra-file!
>
> 2010/5/9 Michael Gogins 
>
>  Probably  a  "de-clicking  envelope." An envelope with a 2-3
>  millisecond
>  rise, a level sustain, and a 4-5 millisecond release to smooth off
>  any
>  sudden click at the beginning or end of the sound.
>  Regards,
>  Mike
>
> On Sun, May 9, 2010 at 11:57 AM, Stefan Thomas
>  wrote:
>> Dear community,
>> I wanted to try out, what Hans Mikelson writes about reconance
>> There I've read:
>>
>> aout   =         aout*iamp*kdclk            ; Amplify
>>
>> Unfortunately I couldn't find out what the term kdclk could stand
> for.
>> It would be geat, if someone could give me a hint!
>>
>>
>>
>
>  --
>  Michael Gogins
>  Irreducible Productions
>  http://www.michael-gogins.com
>  Michael dot Gogins at gmail dot com
>
> Send bugs reports to the Sourceforge bug tracker
>
> https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To  unsubscribe,  send  email  sympa@lists.bath.ac.uk with body
> "unsubscribe csound"
>
>
>
>
> _____________________________________________________________
> Netscape.  Just the Net You Need.
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>



-- 
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"


Date2010-05-10 04:57
FromSteven Yi
Subject[Csnd] Re: Re: Re: question about resonance
I thought I'd mention there's a UDO for this I've used for a long time:

http://www.csounds.com/udo/displayOpcode.php?opcode_id=9

not as short an attack/release as Michael's, but that's easily modifiable.

On Sun, May 9, 2010 at 11:53 PM, Michael Gogins
 wrote:
> It's not an opcode, you just use a linseg to create this envelope.
> What I do is something like this (i use arate not krate just in case):
>
> iattack = 0.002
> isustain = p3
> irelease = 0.005
> p3 = iattack + isustain + irelease
> adeclick linseg 0.0, iattack, 1.0, isustain, 1.0, irelease, 0.0
>
> Regards,
> Mike
>
> On Sun, May 9, 2010 at 10:23 PM, Partev Barr Sarkissian
>  wrote:
>> Oh, good. That would make sense. At first glance I would've
>> thought it a "k-rate" clock of some kind. In circuit schematics,
>> "clk" is the abreviation labelling for "clock", usually
>> digital circuits. A "de-clicking envelope", great, didn't know
>> there was ine til now. Definitely sounds like a uesful opcode.
>> I'll have to remember that one. Thanks Michael.
>>
>> -Partev
>>
>>
>>
>> ===============================================================
>>
>>
>>
>>
>> --- kontrapunktstefan@googlemail.com wrote:
>>
>> From: Stefan Thomas 
>> To: csound@lists.bath.ac.uk
>> Subject: [Csnd] Re: Re: question about resonance
>> Date: Sun, 9 May 2010 19:50:37 +0200
>>
>> Sorry, I was stupid. I should have recognized, that there is a score
>> file!
>> By  the  way:  it  seems,  that  there  is  a  dead link to the
>> orchestra-file!
>>
>> 2010/5/9 Michael Gogins 
>>
>>  Probably  a  "de-clicking  envelope." An envelope with a 2-3
>>  millisecond
>>  rise, a level sustain, and a 4-5 millisecond release to smooth off
>>  any
>>  sudden click at the beginning or end of the sound.
>>  Regards,
>>  Mike
>>
>> On Sun, May 9, 2010 at 11:57 AM, Stefan Thomas
>>  wrote:
>>> Dear community,
>>> I wanted to try out, what Hans Mikelson writes about reconance
>>> There I've read:
>>>
>>> aout   =         aout*iamp*kdclk            ; Amplify
>>>
>>> Unfortunately I couldn't find out what the term kdclk could stand
>> for.
>>> It would be geat, if someone could give me a hint!
>>>
>>>
>>>
>>
>>  --
>>  Michael Gogins
>>  Irreducible Productions
>>  http://www.michael-gogins.com
>>  Michael dot Gogins at gmail dot com
>>
>> Send bugs reports to the Sourceforge bug tracker
>>
>> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To  unsubscribe,  send  email  sympa@lists.bath.ac.uk with body
>> "unsubscribe csound"
>>
>>
>>
>>
>> _____________________________________________________________
>> Netscape.  Just the Net You Need.
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>
>>
>
>
>
> --
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"


Date2010-05-10 07:29
Fromjpff@cs.bath.ac.uk
Subject[Csnd] Re: Re: Re: Re: question about resonance
> I thought I'd mention there's a UDO for this I've used for a long time:
>
> http://www.csounds.com/udo/displayOpcode.php?opcode_id=9
>
> not as short an attack/release as Michael's, but that's easily modifiable.
>

Could someone with access to the udo collection correct the description?

"Given a signal, it will DeClick will apply an envelope ...."
                    ^^^^         ^^^^

==J



Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2010-05-10 17:09
FromSteven Yi
Subject[Csnd] Re: Re: Re: Re: Re: question about resonance
Now corrected, thanks!

On Mon, May 10, 2010 at 2:29 AM,   wrote:
>> I thought I'd mention there's a UDO for this I've used for a long time:
>>
>> http://www.csounds.com/udo/displayOpcode.php?opcode_id=9
>>
>> not as short an attack/release as Michael's, but that's easily modifiable.
>>
>
> Could someone with access to the udo collection correct the description?
>
> "Given a signal, it will DeClick will apply an envelope ...."
>                    ^^^^         ^^^^
>
> ==J
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"