// genesis

echo P6RSa_raninput

// function for setting random network inputs

    int i,j,dex

    float randneur
    
    float CondmaxSPIKEAMPA=1.0e-9

    float Ranrate=200 //Random injection frequency

    for (i=1;i<=(P6RSa_NY);i=i+1)

        for (j=1;j<=(P6RSa_NX);j=j+1)

            randneur = { rand 0 1.0 }

            //if ( {randneur <= neuronfrac} )
            if ( {randneur <= 1.0} )

                dex=(i-1)*P6RSa_NY+(j-1)

                ce /P6RSanet/P6RSa[{dex}]/apdend3

                make_Ex_chSPIKEAMPA
                setfield /P6RSanet/P6RSa[{dex}]/apdend3/Ex_chSPIKEAMPA gmax {CondmaxSPIKEAMPA}
                addmsg /P6RSanet/P6RSa[{dex}]/apdend3/Ex_chSPIKEAMPA /P6RSanet/P6RSa[{dex}]/apdend3 CHANNEL Gk Ek
                addmsg /P6RSanet/P6RSa[{dex}]/apdend3 /P6RSanet/P6RSa[{dex}]/apdend3/Ex_chSPIKEAMPA VOLTAGE Vm

                ce /

                create randomspike /randomspikeP6RSa{dex}
                setfield ^ min_amp 1.0 max_amp 1.0 rate {Ranrate} reset 1 reset_value 0
                addmsg /randomspikeP6RSa{dex} /P6RSanet/P6RSa[{dex}]/apdend3/Ex_chSPIKEAMPA SPIKE

                //create pulsegen /pulsegenP6RSa{dex}
                //setfield ^ level1 {Ranrate} baselevel 0 width1 {stimlen} delay1 {interstimlen} trig_mode 0
                //addmsg /pulsegenP6RSa{dex} /randomspikeP6RSa{dex} RATE output
                //addmsg /netpulsegen /randomspikeP6RSa{dex} RATE output

                setfield /P6RSanet/P6RSa[{dex}]/apdend3/Ex_chSPIKEAMPA synapse[0].delay 0 synapse[0].weight 1

            end

        end

    end