1 | /* Interface ImpedSpecModel
|
---|
2 | *
|
---|
3 | * Needed for user supplied model circuits in the classes
|
---|
4 | * ImpedSpecSimulation and ImpedSpecRegression
|
---|
5 | *
|
---|
6 | * WRITTEN BY: Dr Michael Thomas Flanagan
|
---|
7 | *
|
---|
8 | * DATE: May 2007 (Derived from impedance spectroscopy programs, 2004 - 2007)
|
---|
9 | *
|
---|
10 | * DOCUMENTATION:
|
---|
11 | * See Michael T Flanagan's Java library on-line web pages:
|
---|
12 | * http://www.ee.ucl.ac.uk/~mflanaga/java/ImpedSpecSimulation.html
|
---|
13 | * http://www.ee.ucl.ac.uk/~mflanaga/java/ImpedSpecRegression.html
|
---|
14 | * http://www.ee.ucl.ac.uk/~mflanaga/java/
|
---|
15 | *
|
---|
16 | * Copyright (c) May 2007 Michael Thomas Flanagan
|
---|
17 | *
|
---|
18 | * PERMISSION TO COPY:
|
---|
19 | * Permission to use, copy and modify this software and its documentation for
|
---|
20 | * NON-COMMERCIAL purposes is granted, without fee, provided that an acknowledgement
|
---|
21 | * to the author, Michael Thomas Flanagan at www.ee.ucl.ac.uk/~mflanaga, appears in all copies.
|
---|
22 | *
|
---|
23 | * Dr Michael Thomas Flanagan makes no representations about the suitability
|
---|
24 | * or fitness of the software for any or for a particular purpose.
|
---|
25 | * Michael Thomas Flanagan shall not be liable for any damages suffered
|
---|
26 | * as a result of using, modifying or distributing this software or its derivatives.
|
---|
27 | *
|
---|
28 | ****************************************************************************************/
|
---|
29 |
|
---|
30 | package agents.anac.y2015.agentBuyogV2.flanagan.circuits;
|
---|
31 |
|
---|
32 | import agents.anac.y2015.agentBuyogV2.flanagan.complex.Complex;
|
---|
33 |
|
---|
34 | public interface ImpedSpecModel{
|
---|
35 | Complex modelImpedance(double[] parameters, double omega);
|
---|
36 | } |
---|