arithmetic from csh variable passed to awk

I have the following code in a csh script

I want to pass the value of the variable sigmasq to the awk script so that I can divide $0 by the value of sigmasq

          grep "Rms Value" $f.log                       \
            | awk  '{   sub(/[^:]*:[0-9]*\.[ \t]*/,x);  \
                        print $0/sigmasq                \
                    }' > $f.csmis

This question has been asked/answer many times.
Either seqarch the forums OR look at the bottom of this thread to see the 'More UNIX and Linux Forum Topics You Might Find Helpful' table.

awk -v sigmasq=123