%==========================================================================
clc
clear vars
%close all
%define two spins
Sys.S = [1/2 1/2];
% full g tensors for two BDPA electron spins
Sys.g = [2.0034 2.0031 2.0027; 2.0034 2.0031 2.0027];
J12 = 100; %MHz %%THIS J COUPLING DOESN'T AFFECT SPECTRUM. WHY?

Sys.J = J12;
%D12 = [1 1 -2]*10; % units: MHz
%Sys.eeD = D12;
Sys.lw = 0.5;
% % Frequency-sweep experiment
% %------------------------------------------------------------
% % For frequency sweeps, the convolutional width should be given in MHz.
Exp1.Field = 6906; % static magnetic field, mT
Exp1.mwRange = [193.2 194.4]; % frequency sweep range, GHz
Exp1.nPoints= 8192*5;
% Simulate frequency-sweep spectrum
[nu,specnu] = pepper(Sys,Exp1);
figure (2); hold on; plot(nu,specnu*2,'-');
title('frequency sweep');
xlabel('frequency (GHz)');