You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.1 KiB

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Signal_Generator
{
[Serializable]
class FmSignal : AnalogSignalMethods, IAnalogSignal
{
public Collection<Parameter> paramsCollection { get; set; }
public string typeToString => "FM сигнал";
public new string paramsToString => paramsToString(paramsCollection);
public FmSignal(double ampl, double freq, double ampl2)
{
paramsCollection = new Collection<Parameter>();
paramsCollection.Add(new Parameter("Амплитуда несущей", ampl));
paramsCollection.Add(new Parameter("Частота несущей", freq));
paramsCollection.Add(new Parameter("Амплитуда", ampl2));
}
public double currentAmplitude(double t)
{
var c = paramsCollection.ToArray<Parameter>();
return c[0].value * Math.Sin(2 * 3.14 * c[1].value * t + c[2].value * Math.Sin(t));
}
}
}